absl::move

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

NameDescription
beginThe start of the input range.
endThe end of the input range.
outputThe start of the destination range.