| 127 | |
| 128 | |
| 129 | KeyTree KeyTree::fromSortedStrings(const std::vector<slice>& strings) { |
| 130 | return KeyTree(keyTreeWriter(strings).writeTree()); |
| 131 | } |
| 132 | |
| 133 | KeyTree KeyTree::fromStrings(std::vector<slice> strings) { |
| 134 | std::sort(strings.begin(), strings.end()); |
nothing calls this directly
no test coverage detected