| 46 | bool operator!=(const Interval &other) const { return !(*this == other); } |
| 47 | |
| 48 | std::string ToString() const { return fmt::format("[{}, {})", l, r); } |
| 49 | }; |
| 50 | |
| 51 | template <typename Iter1, typename Iter2, typename F> |
no outgoing calls
no test coverage detected