ArrayGetElem gets the element of the index `idx`.
(idx int)
| 289 | |
| 290 | // ArrayGetElem gets the element of the index `idx`. |
| 291 | func (bj BinaryJSON) ArrayGetElem(idx int) BinaryJSON { |
| 292 | return bj.valEntryGet(headerSize + idx*valEntrySize) |
| 293 | } |
| 294 | |
| 295 | func (bj BinaryJSON) objectGetKey(i int) []byte { |
| 296 | keyOff := int(jsonEndian.Uint32(bj.Value[headerSize+i*keyEntrySize:])) |
no test coverage detected