JsonData multimethod
Methods
- JsonData(s:Success) Source: stdlib.ngs:973
- Convert Success into JSON compatible data structure - the value of the computation
- JsonData(jdvh:JsonDataViaHash) Source: stdlib.ngs:1802
- JsonData(jdvg:JsonDataViaGet) Source: stdlib.ngs:1806
- JsonData(e:Eachable1) Source: stdlib.ngs:1850
- Convert Eachable1 into JSON compatible data structure - array
- JsonData(hl:HashLike) Source: stdlib.ngs:2114
- Convert HashLike into JSON compatible data structure - object
- JsonData(r:Real) Source: stdlib.ngs:2390
- Convert Real into JSON compatible data structure - number
- JsonData(arr:Arr) Source: stdlib.ngs:3315
- Convert Arr into JSON compatible data structure - array
- JsonData(h:Hash) Source: stdlib.ngs:4044
- Convert Hash into JSON compatible data structure - object
- JsonData(eb:EmptyBox) Source: stdlib.ngs:4389
- Convert EmptyBox into JSON compatible data structure - null
- JsonData(fb:FullBox) Source: stdlib.ngs:4392
- Convert FullBox into JSON compatible data structure - the contents of the box
- JsonData(d:Diff) Source: stdlib.ngs:4615
- Convert Diff into JSON compatible data structure - object with "add" and "remove" fields.
For HashDiff, additional "change" field will be present.
- JsonData(b:Bool) Source: stdlib.ngs:4624
- Convert Bool into JSON compatible data structure - boolean
- JsonData(n:Int) Source: stdlib.ngs:4702
- Convert Int into JSON compatible data structure - number
- JsonData(s:Str) Source: stdlib.ngs:5161
- Convert Str into JSON compatible data structure - string
- JsonData(s:Stats) Source: stdlib.ngs:5200
- Convert Stats into JSON compatible data structure - object
- JsonData(p:Path) Source: stdlib.ngs:5911
- Convert Path into JSON compatible data structure - string
- JsonData(n:Null) Source: stdlib.ngs:7842
- Convert Null into JSON compatible data structure - null
- JsonData(t:Time) Source: stdlib.ngs:8270
- Convert Time into JSON compatible data structure - number (epoch seconds)
- JsonData(j:JWT) Source: stdlib.ngs:8878
- Convert to JSON compatible data structure - Hash
- JsonData(i:Iter)
- Convert Iter into JSON compatible data structure - array.
Forces evaluation of MapIter for example.