|
Library of Assembled Shared Sources
|
extra algorithms
Functions | |
| template<class InputIterator, class Size, class OutputIterator> | |
| OutputIterator | lass::stde::copy_n (InputIterator first, Size count, OutputIterator result) |
| copy count elements from sequence starting at first to sequence starting at result | |
| template<class InputIterator, class OutputIterator, class Size> | |
| OutputIterator | lass::stde::repeat (InputIterator first, InputIterator last, OutputIterator output, Size n) |
| copy sequence first to last n times to sequence starting at output | |
| OutputIterator lass::stde::copy_n | ( | InputIterator | first, |
| Size | count, | ||
| OutputIterator | result ) |
copy count elements from sequence starting at first to sequence starting at result
Definition at line 67 of file extended_algorithm.h.
| OutputIterator lass::stde::repeat | ( | InputIterator | first, |
| InputIterator | last, | ||
| OutputIterator | output, | ||
| Size | n ) |
copy sequence first to last n times to sequence starting at output
Definition at line 80 of file extended_algorithm.h.