Hi All,

Does this kind of wrapper exist in Boost anywhere?

template < class Iterator, class T >
bool exists( Iterator begin, Iterator end, const T & value )
{
  return find( begin, end, value ) != end;
}

Thanks,

- Rob.