Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template is_element_less

boost::itl::is_element_less

Synopsis

template<class LeftT , class RightT > 
  boost::enable_if< is_intra_combinable< LeftT, RightT >, bool >::type 
  is_element_less(const LeftT & left, const RightT & right);

Description

Returns true, if left is lexicographically less than right. Intervals are interpreted as sequence of elements. Complexity: linear.


PrevUpHomeNext