Handbook
Glossary
check-connectionless-port ( port -- port )
Vocabulary
io
.
sockets
.
private
Inputs
port
an
object
Outputs
port
an
object
Definition
USING:
combinators.short-circuit
kernel
;
IN:
io.sockets.private
:
check-connectionless-port
( port -- port )
dup
{
[
datagram-port?
]
[
raw-port?
]
}
1||
[
invalid-port
]
unless
;