Handbook
Glossary
seq-bounds-check ( seq n -- seq n )
Vocabulary
sequences
.
seq
Inputs
seq
an
object
n
an
object
Outputs
seq
an
object
n
an
object
Definition
USING:
kernel
sequences
;
IN:
sequences.seq
:
seq-bounds-check
( seq n -- seq n )
2dup
seq-bounds-check?
[
swap
bounds-error
]
unless
;
inline