Searched defs:is_nothrow_move_constructible (Results 1 – 3 of 3) sorted by relevance
25 struct is_nothrow_move_constructible : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_CONSTRU… struct27 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; struct28 template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_t… struct73 template <> struct is_nothrow_move_constructible<void> : false_type{}; struct75 template <> struct is_nothrow_move_constructible<void const> : false_type{}; struct76 template <> struct is_nothrow_move_constructible<void volatile> : false_type{}; struct77 template <> struct is_nothrow_move_constructible<void const volatile> : false_type{}; struct80 template <class T> struct is_nothrow_move_constructible<T&> : public ::boost::true_type{}; struct82 template <class T> struct is_nothrow_move_constructible<T&&> : public ::boost::true_type{}; struct
71 template <class T> struct is_nothrow_move_constructible<recursive_wrapper<T> > : boost::false_type{… struct
869 struct is_nothrow_move_constructible struct870 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_CONSTRUCTIBLE(T); };