Move a range of elements into an output iterator.
Declared in <absl/utility/utility.h>
template<
class It,
class OutIt>
[[deprecated("Use std::move instead.")]]
constexpr
OutIt
move(
It&& begin,
It&& end,
OutIt&& output);
Deprecated: Use std::move instead.. Use of this entity is allowed but discouraged.
An iterator past the last moved element.
| Name | Description |
|---|---|
| begin | The start of the input range. |
| end | The end of the input range. |
| output | The start of the destination range. |