| 337 | |
| 338 | template <typename Key, typename Less> |
| 339 | bool operator<(const flat_set<Key, Less>& lhs, |
| 340 | const flat_set<Key, Less>& rhs) { |
| 341 | return fl::lexicographical_compare(lhs.begin(), lhs.end(), |
| 342 | rhs.begin(), rhs.end()); |
| 343 | } |
| 344 | |
| 345 | template <typename Key, typename Less> |
| 346 | bool operator<=(const flat_set<Key, Less>& lhs, |
nothing calls this directly
no test coverage detected