()
| 286 | } |
| 287 | |
| 288 | func (j *jsonEncoded) ObjectIter() (*ObjectIterator, error) { |
| 289 | dec, err := j.shallowDecode() |
| 290 | if err != nil { |
| 291 | return nil, err |
| 292 | } |
| 293 | return dec.ObjectIter() |
| 294 | } |
| 295 | |
| 296 | func (j *jsonEncoded) nthJEntry(n int, off int) (jEntry, error) { |
| 297 | return getJEntryAt(j.value, containerHeaderLen+n*jEntryLen, off) |
nothing calls this directly
no test coverage detected