Nota
O acesso a esta página requer autorização. Pode tentar iniciar sessão ou alterar os diretórios.
O acesso a esta página requer autorização. Pode tentar alterar os diretórios.
Returns the passed in argument as an rvalue reference.
template<class Type>
typename remove_reference<T>::type&&
move(Type&& _Arg);
Parameters
Parameter |
Description |
|---|---|
_Arg |
The parameter to move. |
Return Value
This template function returns _Arg as an rvalue reference, whether or not Type is a reference type.
Remarks
move makes the returned argument suitable for moving.
Requirements
Header: <utility>
Namespace: std