Handbook
Glossary
find-max-index ( seq n -- i )
Vocabulary
math
.
combinatorics
.
private
Inputs
seq
an
object
n
an
object
Outputs
i
an
object
Definition
USING:
kernel
math
sequences
;
IN:
math.combinatorics.private
:
find-max-index
( seq n -- i )
over
length
-
[
+
>=
]
curry
find-index
drop
;
inline