Data.JSON.Types
Contents
DOM-based
Each JSON document has a single root, which may be either an Object
or Array
.
Some parsers allow non-container roots, but portable libraries should not depend on this incorrect behavior.
Constructors
RootObject Object | |
RootArray Array |
type Object = Map Text ValueSource
Objects store unordered associations between textual keys and Value
s.
Constructors
ValueObject Object | |
ValueArray Array | |
ValueAtom Atom |
Constructors
AtomNull | |
AtomBoolean Bool | |
AtomNumber Rational | JSON numbers may be of arbitrary length and precision. Using
|
AtomText Text |