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 a snapshot of the develop branch, built from commit b43dbcdf2c.
PrevUpHomeNext

Class template bounded_value

boost::icl::bounded_value

Synopsis

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

template<typename DomainT> 
class bounded_value {
public:
  // types
  typedef DomainT                  domain_type;
  typedef bounded_value< DomainT > type;       

  // public member functions
  bounded_value(const domain_type &, interval_bounds);
  domain_type value() const;
  interval_bounds bound() const;
};

Description

bounded_value public member functions

  1. bounded_value(const domain_type & value, interval_bounds bound);
  2. domain_type value() const;
  3. interval_bounds bound() const;

PrevUpHomeNext