| 523 | |
| 524 | template <typename Key, typename Value, typename Less> |
| 525 | bool operator<(const flat_map<Key, Value, Less>& lhs, |
| 526 | const flat_map<Key, Value, Less>& rhs) FL_NOEXCEPT { |
| 527 | return fl::lexicographical_compare(lhs.begin(), lhs.end(), |
| 528 | rhs.begin(), rhs.end()); |
| 529 | } |
| 530 | |
| 531 | template <typename Key, typename Value, typename Less> |
| 532 | bool operator<=(const flat_map<Key, Value, Less>& lhs, |
nothing calls this directly
no test coverage detected