Handbook
Glossary
check-array-capacity ( n -- n )
Vocabulary
sorting
.
quick
.
private
Inputs
n
an
object
Outputs
n
an
object
Definition
USING:
kernel
math
sequences.private
;
IN:
sorting.quick.private
:
check-array-capacity
( n -- n )
integer>fixnum-strict
dup
array-capacity?
[
"too large"
throw
]
unless
;
inline