Searched defs:is_nothrow_move_assignable (Results 1 – 3 of 3) sorted by relevance
29 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)> struct33 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{}; struct34 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{}; struct35 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{}; struct36 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{}; struct38 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{}; struct83 template <> struct is_nothrow_move_assignable<void> : public false_type{}; struct85 template <> struct is_nothrow_move_assignable<void const> : public false_type{}; struct86 template <> struct is_nothrow_move_assignable<void const volatile> : public false_type{}; struct87 template <> struct is_nothrow_move_assignable<void volatile> : public false_type{}; struct
78 using is_nothrow_move_assignable=std::is_nothrow_move_assignable<T>; typedef in boost::poly_collection::detail::value_holder
883 struct is_nothrow_move_assignable struct884 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_ASSIGNABLE(T); };