()
| 303 | } |
| 304 | |
| 305 | func (j *jsonEncoded) ObjectIter() (*ObjectIterator, error) { |
| 306 | dec, err := j.shallowDecode() |
| 307 | if err != nil { |
| 308 | return nil, err |
| 309 | } |
| 310 | return dec.ObjectIter() |
| 311 | } |
| 312 | |
| 313 | func (j *jsonEncoded) nthJEntry(n int, off int) (jEntry, error) { |
| 314 | return getJEntryAt(j.value, containerHeaderLen+n*jEntryLen, off) |
nothing calls this directly
no test coverage detected