| 40 | bool isLeaf() const FLPURE {return _capacity == 0;} |
| 41 | |
| 42 | static void encodeOffset(offset_t &o, size_t curPos) { |
| 43 | assert_precondition((ssize_t)curPos > o); |
| 44 | o = endian::encLittle32(offset_t(curPos - o)); |
| 45 | } |
| 46 | |
| 47 | protected: |
| 48 | uint8_t capacity() const FLPURE { |
nothing calls this directly
no test coverage detected