FromEncoding returns a JSON value which is lazily decoded.
(b []byte)
| 225 | |
| 226 | // FromEncoding returns a JSON value which is lazily decoded. |
| 227 | func FromEncoding(b []byte) (JSON, error) { |
| 228 | return newEncodedFromRoot(b) |
| 229 | } |
| 230 | |
| 231 | func decodeJSONArray(containerHeader uint32, b []byte) ([]byte, JSON, error) { |
| 232 | length := containerHeader & containerHeaderLenMask |
nothing calls this directly
no test coverage detected