| 130 | |
| 131 | template <typename CharIterable> |
| 132 | inline std::vector<char> unique_labels(const CharIterable& a) { |
| 133 | return union_labels(a, CharIterable()); |
| 134 | } |
| 135 | |
| 136 | // Apply transforms to all_labels and get another all_labels |
| 137 | inline std::vector<char> TransformLabelsOrder( |
no test coverage detected