(qr *querySession)
| 576 | } |
| 577 | |
| 578 | func (st *SlimTrie) getLabels(qr *querySession) []uint64 { |
| 579 | bm, _ := st.getInnerBM(qr) |
| 580 | return bmtree.Decode(qr.to-qr.from, bm) |
| 581 | } |
| 582 | |
| 583 | // getInnerBM retrieves the inner node bitmap cached by a querySession, and the size of bitmap. |
| 584 | func (st *SlimTrie) getInnerBM(qr *querySession) ([]uint64, int32) { |
no test coverage detected