Searched defs:is_nothrow_move_assignable (Results 1 – 2 of 2) sorted by relevance
27 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)>… struct28 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{}; struct29 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{}; struct30 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{}; struct31 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{}; struct33 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{}; struct72 template <> struct is_nothrow_move_assignable<void> : public false_type{}; struct74 template <> struct is_nothrow_move_assignable<void const> : public false_type{}; struct75 template <> struct is_nothrow_move_assignable<void const volatile> : public false_type{}; struct76 template <> struct is_nothrow_move_assignable<void volatile> : public false_type{}; struct
883 struct is_nothrow_move_assignable struct884 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_ASSIGNABLE(T); };