Boost C++ Libraries Home Libraries People FAQ More

PrevUpHomeNext

Function template is_element_equal

boost::itl::is_element_equal

Synopsis

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

Description

Returns true, if left and right contain the same elements. Complexity: linear.


PrevUpHomeNext