Move a range of elements into an output iterator.
Synopsis
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);
|
Warning
|
Deprecated: Use std::move instead.. Use of this entity is allowed but discouraged. |
Return Value
An iterator past the last moved element.
Parameters
Name |
Description |
begin |
The start of the input range. |
end |
The end of the input range. |
output |
The start of the destination range. |
Created with MrDocs