Lexicographic comparison
| 497 | |
| 498 | /// Lexicographic comparison |
| 499 | bool operator<(const set& other) const { |
| 500 | return fl::lexicographical_compare(begin(), end(), other.begin(), other.end()); |
| 501 | } |
| 502 | |
| 503 | /// Less-than-or-equal comparison |
| 504 | bool operator<=(const set& other) const { |
nothing calls this directly
no test coverage detected