| 4 | |
| 5 | namespace NCompactTrie { |
| 6 | TWriteableNode::TWriteableNode() |
| 7 | : LeafPos(nullptr) |
| 8 | , LeafLength(0) |
| 9 | , ForwardOffset(NPOS) |
| 10 | , LeftOffset(NPOS) |
| 11 | , RightOffset(NPOS) |
| 12 | , Label(0) |
| 13 | { |
| 14 | } |
| 15 | |
| 16 | static size_t GetOffsetFromEnd(const TNode& node, size_t absOffset) { |
| 17 | return absOffset ? absOffset - node.GetOffset() - node.GetCoreLength() : NPOS; |
nothing calls this directly
no test coverage detected