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 /*************************************************************************************************/
126 /*************************************************************************************************/
130 /*************************************************************************************************/
boost::range_iterator< ForwardRange >::type unique(ForwardRange &range) unique implementation Definition: unique.hpp:40 OutputIterator unique_copy(InputRange &range, OutputIterator result) unique implementation Definition: unique.hpp:73 Definition: functional.hpp:26 OutputIterator unique_copy(const InputRange &range, OutputIterator result, BinaryPredicate pred) unique implementation Definition: unique.hpp:117 boost::range_iterator< ForwardRange >::type unique(ForwardRange &range, BinaryPredicate pred) unique implementation Definition: unique.hpp:62 |