...one of the most highly
regarded and expertly designed C++ library projects in the
world.
— Herb Sutter and Andrei
Alexandrescu, C++
Coding Standards
boost::icl::right_open_interval
// In header: <boost/icl/right_open_interval.hpp> template<typename DomainT, ICL_COMPARE Compare = ICL_COMPARE_INSTANCE(ICL_COMPARE_DEFAULT, DomainT)> class right_open_interval { public: // types typedef right_open_interval< DomainT, Compare > type; typedef DomainT domain_type; // construct/copy/destruct right_open_interval(); explicit right_open_interval(const DomainT &); right_open_interval(const DomainT &, const DomainT &); // public member functions typedef ICL_COMPARE_DOMAIN(Compare, DomainT); domain_type lower() const; domain_type upper() const; };