Cast a value to an rvalue reference to enable moving from it.
Declared in <absl/utility/utility.h>
template<class T>
[[deprecated("Use std::move instead."), nodiscard]]
constexpr
std::remove_reference_t<T>&&
move(T&& arg) noexcept;
Deprecated: Use std::move instead.. Use of this entity is allowed but discouraged.
| Name | Description |
|---|---|
| arg | The value to cast. |