cref Function
Costruisce un reference_wrapper const da un argomento.
template<class Ty>
reference_wrapper<const Ty> cref(const Ty& arg);
template<class Ty>
reference_wrapper<const Ty> cref(const reference_wrapper<Ty>& arg);
Parametri
Ty
Il tipo di argomento per eseguire il wrapping.arg
L'argomento per eseguire il wrapping.
Note
La prima funzione restituisce reference_wrapper<const Ty>(arg.get()).Utilizzarla per eseguire il wrapping di un riferimento const.La seconda funzione restituisce reference_wrapper<const Ty>(arg).Utilizzarla a rewrap un riferimento di cui è stato eseguito il wrapping come riferimento const.
Esempio
// std_tr1__functional__cref.cpp
// compile with: /EHsc
#include <functional>
#include <iostream>
int neg(int val)
{
return (-val);
}
int main()
{
int i = 1;
std::cout << "i = " << i << std::endl;
std::cout << "cref(i) = " << std::cref(i) << std::endl;
std::cout << "cref(neg)(i) = "
<< std::cref(&neg)(i) << std::endl;
return (0);
}
Requisiti
intestazione: <functional>
Spazio dei nomi: deviazione standard