Boost C++ Libraries

...one of the most highly regarded and expertly designed C++ library projects in the world. Herb Sutter and Andrei Alexandrescu, C++ Coding Standards

This is the documentation for an old version of Boost. Click here to view this page for the latest version.
PrevUpHomeNext

Class template discrete_interval

boost::icl::discrete_interval

Synopsis

// In header: <boost/icl/discrete_interval.hpp>

template<typename DomainT, 
         ICL_COMPARE Compare = ICL_COMPARE_INSTANCE(ICL_COMPARE_DEFAULT, DomainT)> 
class discrete_interval {
public:
  // types
  typedef discrete_interval< DomainT, Compare > type;               
  typedef DomainT                               domain_type;        
  typedef bounded_value< DomainT >::type        bounded_domain_type;

  // construct/copy/destruct
  discrete_interval();
  explicit discrete_interval(const DomainT &);
  discrete_interval(const DomainT &, const DomainT &, 
                    interval_bounds = interval_bounds::right_open(), 
                    discrete_interval * = 0);

  // public member functions
  typedef ICL_COMPARE_DOMAIN(Compare, DomainT);
  domain_type lower() const;
  domain_type upper() const;
  interval_bounds bounds() const;

  // public static functions
  static discrete_interval open(const DomainT &, const DomainT &);
  static discrete_interval right_open(const DomainT &, const DomainT &);
  static discrete_interval left_open(const DomainT &, const DomainT &);
  static discrete_interval closed(const DomainT &, const DomainT &);
};

Description

discrete_interval public construct/copy/destruct

  1. discrete_interval();

    Default constructor; yields an empty interval [0,0).

  2. explicit discrete_interval(const DomainT & val);

    Constructor for a closed singleton interval [val,val]

  3. discrete_interval(const DomainT & low, const DomainT & up, 
                      interval_bounds bounds = interval_bounds::right_open(), 
                      discrete_interval * = 0);

    Interval from low to up with bounds bounds

discrete_interval public member functions

  1. typedef ICL_COMPARE_DOMAIN(Compare, DomainT);
  2. domain_type lower() const;
  3. domain_type upper() const;
  4. interval_bounds bounds() const;

discrete_interval public static functions

  1. static discrete_interval open(const DomainT & lo, const DomainT & up);
  2. static discrete_interval right_open(const DomainT & lo, const DomainT & up);
  3. static discrete_interval left_open(const DomainT & lo, const DomainT & up);
  4. static discrete_interval closed(const DomainT & lo, const DomainT & up);

PrevUpHomeNext