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

Header <boost/algorithm/cxx11/one_of.hpp>

Test ranges to see if only one element matches a value or predicate.

Marshall Clow

namespace boost {
  namespace algorithm {
    template<typename InputIterator, typename Predicate> 
      bool one_of(InputIterator, InputIterator, Predicate);
    template<typename Range, typename Predicate> 
      bool one_of(const Range &, Predicate);
    template<typename InputIterator, typename V> 
      bool one_of_equal(InputIterator, InputIterator, const V &);
    template<typename Range, typename V> 
      bool one_of_equal(const Range &, const V &);
  }
}

PrevUpHomeNext