This documentation is automatically generated by online-judge-tools/verification-helper
template <class T> class less_equal_ordered_set {
public:
using value_type = T;
static constexpr bool compare(const T &x, const T &y) noexcept {
return x <= y;
}
};
#line 1 "other/less_equal_ordered_set.cpp"
template <class T> class less_equal_ordered_set {
public:
using value_type = T;
static constexpr bool compare(const T &x, const T &y) noexcept {
return x <= y;
}
};