jsonObject represents a JSON object as a sorted-by-key list of key-value pairs, which are unique by key.
| 340 | // jsonObject represents a JSON object as a sorted-by-key list of key-value |
| 341 | // pairs, which are unique by key. |
| 342 | type jsonObject []jsonKeyValuePair |
| 343 | |
| 344 | func (jsonNull) Type() Type { return NullJSONType } |
| 345 | func (jsonFalse) Type() Type { return FalseJSONType } |
no outgoing calls
no test coverage detected