Function |
Description |
copy |
The function copies the range of elements. |
copy_n |
The function copies n elements of the range |
copy_if |
The function copies the elements of the range if a certain condition is fulfilled. |
copy_backward |
The function copies the elements in a backward order |
move |
The function moves the ranges of elements. |
move_backward |
The function moves the range of elements in the backward order |
swap |
The function swaps the value of two objects. |
swap_ranges |
The function swaps the value of two ranges. |
iter_swap |
The function swaps the values of two iterators under reference. |
transform |
The function transforms all the values in a range. |
replace |
The function replaces the values in the range with a specific value. |
replace_if |
The function replaces the value of the range if a certain condition is fulfilled. |
replace_copy |
The function copies the range of values by replacing with an element. |
replace_copy_if |
The function copies the range of values by replacing with an element if a certain condition is fulfilled. |
fill |
The function fills the values in the range with a value. |
fill_n |
The function fills the values in the sequence. |
generate |
The function is used for the generation of values of the range. |
generate_n |
The function is used for the generation of values of the sequence. |
remove |
The function removes the values from the range. |
remove_if |
The function removes the values of the range if a condition is fulfilled. |
remove_copy |
The function copies the values of the range by removing them. |
remove_copy_if |
The function copies the values of the range by removing them if a condition is fulfilled. |
unique |
The function identifies the unique element of the range. |
unique_copy |
The function copies the unique elements of the range. |
reverse |
The function reverses the range. |
reverse_copy |
The function copies the range by reversing values. |
rotate |
The function rotates the elements of the range in left direction. |
rotate_copy |
The function copies the elements of the range which is rotated left. |
random_shuffle |
The function shuffles the range randomly. |
shuffle |
The function shuffles the range randomly with the help of a generator. |