unique.hpp
Go to the documentation of this file.
7 /*************************************************************************************************/
20 /*************************************************************************************************/
24 /*************************************************************************************************/
33 /*************************************************************************************************/
62 inline typename boost::range_iterator<ForwardRange>::type unique(ForwardRange& range, BinaryPredicate pred)
95 inline OutputIterator unique_copy(InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate pred)
106 inline OutputIterator unique_copy(InputRange& range, OutputIterator result, BinaryPredicate pred)
117 inline OutputIterator unique_copy(const InputRange& range, OutputIterator result, BinaryPredicate pred)
122 /*************************************************************************************************/
|