Handbook
Glossary
@denom-digit-or-punc ( i number-parse n char -- n/f )
Vocabulary
math
.
parser
.
private
Inputs
i
an
object
number-parse
an
object
n
an
object
char
an
object
Outputs
n/f
an
object
Definition
USING:
combinators
math
;
IN:
math.parser.private
:
@denom-digit-or-punc
( i number-parse n char -- n/f )
[
[
@denom-digit
]
require-next-digit
]
[
{
{
46
[
>float
[
@abort
]
next-digit
]
}
[
@denom-digit
]
}
case
]
if-skip
;
inline