Searched defs:is_rvalue_reference (Results 1 – 2 of 2) sorted by relevance
17 template <class T> struct is_rvalue_reference : public false_type {}; struct19 template <class T> struct is_rvalue_reference<T&&> : public true_type {}; struct
499 struct is_rvalue_reference struct500 { static const bool value = false; };505 struct is_rvalue_reference< T&& > struct506 { static const bool value = true; };511 struct is_rvalue_reference< boost::rv<T>& > struct512 { static const bool value = true; };515 struct is_rvalue_reference< const boost::rv<T>& > struct516 { static const bool value = true; };