| 94 | }; |
| 95 | |
| 96 | std::vector<prefix_and_next> collect_prefix_and_next() { |
| 97 | std::vector<uint32_t> prefix; |
| 98 | std::vector<prefix_and_next> result; |
| 99 | collect_prefix_and_next(0, prefix, result); |
| 100 | return result; |
| 101 | } |
| 102 | |
| 103 | private: |
| 104 | void collect_prefix_and_next(size_t index, std::vector<uint32_t> & prefix, std::vector<prefix_and_next> & out) { |
no test coverage detected