Tag: Modifying
-
Copies a range starting with the first element
-
Copies a range starting with the last element
-
Copies a specified number of elements
-
Replaces each element with a given value
-
Replaces n elements with a given value
-
Replaces each element with the result of an operation
-
Replaces n elements with the result of an operation
-
Swap values of objects pointed by two iterators
-
Changes the order of the elements so that elements that match a criterion are at the front
-
Brings the elements into a random order
-
Removes elements with a given value
-
Copies elements that do not match a given value
-
Copies elements that do not match a given criterion
-
Removes elements that match a given criterion
-
Replaces elements that have a special value with another value
-
Replaces elements that have a special value while copying the whole range
-
Replaces elements that match a criterion while copying the whole range
-
Replaces elements that match a criterion with another value
-
Reverses the order of the elements
-
Copies the elements while reversing their order
-
Rotates the order of the elements
-
Copies the elements while rotating their order
-
Same as partition(), but preserves the relative order of matching and nonmatching elements
-
Exchanges the values of the elements between two types of objects
-
Swaps elements of two ranges
-
Modifies (and copies) elements; combines elements of two ranges
-
Removes adjacent duplicates (elements that are equal to their predecessor)
-
Copies elements while removing adjacent duplicates