cref
template <class Ty>
reference_wrapper<const Ty> cref(const Ty& arg);
template <class Ty>
reference_wrapper<const Ty> cref(const reference_wrapper<Ty>& arg);[Added with TR1]
The first function returns reference_wrapper<const Ty>(arg.get()). The second function returns reference_wrapper<const Ty>(arg).