Handbook
Glossary
if-json-null ( x if-null else -- )
JSON serialization
Prev:
json-null? ( object -- ? )
Next:
when-json-null ( x if-null -- )
Vocabulary
json
Inputs
x
an
object
if-null
an
object
else
an
object
Outputs
None
Definition
USING:
kernel
;
IN:
json
:
if-json-null
( x if-null else -- )
[
dup
json-null?
]
[
[
drop
]
prepose
]
[
]
tri*
if
;
inline