Handbook
Glossary
check-float ( x -- x )
Vocabulary
math
.
approx
.
private
Inputs
x
an
object
Outputs
x
an
object
Definition
USING:
kernel
math
;
IN:
math.approx.private
:
check-float
( x -- x )
dup
float?
[
"can't be floats"
throw
]
when
;