|
|
template<class ForwardRange > |
boost::range_iterator< ForwardRange >::type | unique (ForwardRange &range) |
|
template<class ForwardIterator , class BinaryPredicate > |
ForwardIterator | unique (ForwardIterator first, ForwardIterator last, BinaryPredicate pred) |
|
template<class ForwardRange , class BinaryPredicate > |
boost::range_iterator< ForwardRange >::type | unique (ForwardRange &range, BinaryPredicate pred) |
|
template<class InputRange , class OutputIterator > |
OutputIterator | unique_copy (InputRange &range, OutputIterator result) |
|
template<class InputRange , class OutputIterator > |
OutputIterator | unique_copy (const InputRange &range, OutputIterator result) |
|
template<class InputIterator , class OutputIterator , class BinaryPredicate > |
OutputIterator | unique_copy (InputIterator first, InputIterator last, OutputIterator result, BinaryPredicate pred) |
|
template<class InputRange , class OutputIterator , class BinaryPredicate > |
OutputIterator | unique_copy (InputRange &range, OutputIterator result, BinaryPredicate pred) |
|
template<class InputRange , class OutputIterator , class BinaryPredicate > |
OutputIterator | unique_copy (const InputRange &range, OutputIterator result, BinaryPredicate pred) |
|
- See also
-
§ unique() [1/3]
boost::range_iterator<ForwardRange>::type adobe::unique |
( |
ForwardRange & |
range | ) |
|
unique implementation
Definition at line 40 of file unique.hpp.
§ unique() [2/3]
ForwardIterator adobe::unique |
( |
ForwardIterator |
first, |
|
|
ForwardIterator |
last, |
|
|
BinaryPredicate |
pred |
|
) |
| |
unique implementation
Definition at line 51 of file unique.hpp.
§ unique() [3/3]
boost::range_iterator<ForwardRange>::type adobe::unique |
( |
ForwardRange & |
range, |
|
|
BinaryPredicate |
pred |
|
) |
| |
unique implementation
Definition at line 62 of file unique.hpp.
§ unique_copy() [1/5]
OutputIterator adobe::unique_copy |
( |
InputRange & |
range, |
|
|
OutputIterator |
result |
|
) |
| |
unique implementation
Definition at line 73 of file unique.hpp.
§ unique_copy() [2/5]
OutputIterator adobe::unique_copy |
( |
const InputRange & |
range, |
|
|
OutputIterator |
result |
|
) |
| |
unique implementation
Definition at line 84 of file unique.hpp.
§ unique_copy() [3/5]
OutputIterator adobe::unique_copy |
( |
InputIterator |
first, |
|
|
InputIterator |
last, |
|
|
OutputIterator |
result, |
|
|
BinaryPredicate |
pred |
|
) |
| |
unique implementation
Definition at line 95 of file unique.hpp.
§ unique_copy() [4/5]
OutputIterator adobe::unique_copy |
( |
InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
BinaryPredicate |
pred |
|
) |
| |
§ unique_copy() [5/5]
OutputIterator adobe::unique_copy |
( |
const InputRange & |
range, |
|
|
OutputIterator |
result, |
|
|
BinaryPredicate |
pred |
|
) |
| |
|