| 40 | Data GetExpectedContents() const { return {m_data.cbegin(), m_data.cend()}; } |
| 41 | |
| 42 | vector<Value> GetValuesByKey(Key const & key) const |
| 43 | { |
| 44 | vector<Value> values; |
| 45 | m_trie.ForEachInNode(key, [&](Value const & value) { values.push_back(value); }); |
| 46 | sort(values.begin(), values.end()); |
| 47 | return values; |
| 48 | } |
| 49 | |
| 50 | Data GetContentsByPrefix(Key const & prefix) const |
| 51 | { |
nothing calls this directly
no test coverage detected