(n int, off int)
| 297 | } |
| 298 | |
| 299 | func (j *jsonEncoded) nthJEntry(n int, off int) (jEntry, error) { |
| 300 | return getJEntryAt(j.value, containerHeaderLen+n*jEntryLen, off) |
| 301 | } |
| 302 | |
| 303 | // objectGetDataRange returns the [begin, end) subslice of the object's data. |
| 304 | func (j *jsonEncoded) objectGetDataRange(begin, end int) []byte { |
no test coverage detected