(n int, off int)
| 311 | } |
| 312 | |
| 313 | func (j *jsonEncoded) nthJEntry(n int, off int) (jEntry, error) { |
| 314 | return getJEntryAt(j.value, containerHeaderLen+n*jEntryLen, off) |
| 315 | } |
| 316 | |
| 317 | // objectGetDataRange returns the [begin, end) subslice of the object's data. |
| 318 | func (j *jsonEncoded) objectGetDataRange(begin, end int) []byte { |
no test coverage detected