...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::open_interval
// In header: <boost/icl/open_interval.hpp> template<typename DomainT, ICL_COMPARE Compare = ICL_COMPARE_INSTANCE(ICL_COMPARE_DEFAULT, DomainT)> class open_interval { public: // types typedef open_interval< DomainT, Compare > type; typedef DomainT domain_type; // public member functions typedef ICL_COMPARE_DOMAIN(Compare, DomainT); open_interval(); explicit open_interval(const DomainT &); open_interval(const DomainT &, const DomainT &); DomainT lower() const; DomainT upper() const; };
open_interval
public member functionstypedef ICL_COMPARE_DOMAIN(Compare, DomainT);
open_interval();
Default constructor; yields an empty interval (0,0)
.
explicit open_interval(const DomainT & val);
Constructor for an open singleton interval (val-1,val+1)
open_interval(const DomainT & low, const DomainT & up);
Interval from low
to up
with bounds bounds
DomainT lower() const;
DomainT upper() const;