| 7 | |
| 8 | namespace NCompactTrie { |
| 9 | TNode::TNode() |
| 10 | : Offset(0) |
| 11 | , LeafLength(0) |
| 12 | , CoreLength(0) |
| 13 | , Label(0) |
| 14 | { |
| 15 | for (auto& offset : Offsets) { |
| 16 | offset = 0; |
| 17 | } |
| 18 | } |
| 19 | |
| 20 | // We believe that epsilon links are found only on the forward-position and that afer jumping an epsilon link you come to an ordinary node. |
| 21 |
nothing calls this directly
no test coverage detected