Handbook
Glossary
json-coerce ( obj -- str )
Vocabulary
json
.
private
Inputs
obj
an
object
Outputs
str
an
object
Definition
IN:
json.private
GENERIC:
json-coerce
( obj -- str )
Methods
USING:
json.private
kernel
;
M:
f
json-coerce
drop
"false"
;
USING:
json
json.private
math
;
M:
float
json-coerce
float>json
;
USING:
json.private
math
math.parser
;
M:
integer
json-coerce
number>string
;
USING:
json
json.private
kernel
;
M:
json-null
json-coerce
drop
"null"
;
USING:
json.private
math
math.parser
;
M:
real
json-coerce
>float
number>string
;
USING:
json.private
strings
;
M:
string
json-coerce
;
USING:
json.private
kernel
;
M:
t
json-coerce
drop
"true"
;