Handbook
Glossary
octal? ( str -- ? )
Vocabulary
ip-parser
.
private
Inputs
str
an
object
Outputs
?
an
object
Definition
USING:
combinators.short-circuit
kernel
sequences
;
IN:
ip-parser.private
:
octal?
( str -- ? )
{
[
"0"
=
not
]
[
"0"
head?
]
[
"0x"
head?
not
]
}
1&&
;