FromEncoding returns a JSON value which is lazily decoded.
(b []byte)
| 211 | |
| 212 | // FromEncoding returns a JSON value which is lazily decoded. |
| 213 | func FromEncoding(b []byte) (JSON, error) { |
| 214 | return newEncodedFromRoot(b) |
| 215 | } |
| 216 | |
| 217 | func decodeJSONArray(containerHeader uint32, b []byte) ([]byte, JSON, error) { |
| 218 | length := containerHeader & containerHeaderLenMask |
nothing calls this directly
no test coverage detected
searching dependent graphs…