partition |
Functions | |
template<class BidirectionalIterator , class Predicate > | |
BidirectionalIterator | partition (BidirectionalIterator first, BidirectionalIterator last, Predicate pred) |
template<class BidirectionalRange , class Predicate > | |
boost::range_iterator < BidirectionalRange >::type | partition (BidirectionalRange &range, Predicate pred) |
template<class BidirectionalIterator , class Predicate > | |
BidirectionalIterator | stable_partition (BidirectionalIterator first, BidirectionalIterator last, Predicate pred) |
template<class BidirectionalRange , class Predicate > | |
boost::range_iterator < BidirectionalRange >::type | stable_partition (BidirectionalRange &range, Predicate pred) |
Detailed Description
- See also:
- STL documentation for partition
- STL documentation for stable_partition
Function Documentation
BidirectionalIterator adobe::partition | ( | BidirectionalIterator | first, |
BidirectionalIterator | last, | ||
Predicate | pred | ||
) |
partition implementation
Definition at line 41 of file partition.hpp.
boost::range_iterator<BidirectionalRange>::type adobe::partition | ( | BidirectionalRange & | range, |
Predicate | pred | ||
) |
partition implementation
Definition at line 53 of file partition.hpp.
BidirectionalIterator adobe::stable_partition | ( | BidirectionalIterator | first, |
BidirectionalIterator | last, | ||
Predicate | pred | ||
) |
partition implementation
Definition at line 65 of file partition.hpp.
boost::range_iterator<BidirectionalRange>::type adobe::stable_partition | ( | BidirectionalRange & | range, |
Predicate | pred | ||
) |
partition implementation
Definition at line 77 of file partition.hpp.