|
template<typename ForwardIterator > |
Iterator | next (ForwardIterator it) |
| The function returns the result of operator++ on a ForwardIterator . More...
|
|
template<typename BidirectionalIterator > |
Iterator | prev (BidirectionalIterator it) |
| The function returns the result of operator-- on a BidirectionalIterator . More...
|
|
template<class InputIterator , class Size , class OutputIterator > |
OutputIterator | copy_n (InputIterator first, Size count, OutputIterator result) |
| Copies n items from an input iterator to an output iterator. More...
|
|