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