Searched defs:is_nothrow_move_assignable (Results 1 – 8 of 8) 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
24 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_assignable struct
44 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_assignable struct
1053 struct is_nothrow_move_assignable struct1054 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_ASSIGNABLE(T); };