Module type Process_intf.Basic
val to_number : [> `Int of int | `Float of float ] -> float
to_number json
converts`Float f
tof
andInt i
tofloat i
val to_number_option : [> `Int of int | `Float of float | `Null ] -> float option
to_number_option json
converts`Float f
toSome f
,`Int i
toSome (float i)
and`Null
toNone
val to_int_option : [> `Int of int | `Null ] -> int option
to_int_option json
converts`Int i
toSome i
and`Null
toNone