Home
last modified time | relevance | path

Searched defs:is_nothrow_move_assignable (Results 1 – 3 of 3) sorted by relevance

/third_party/boost/boost/type_traits/
Dis_nothrow_move_assignable.hpp29 struct is_nothrow_move_assignable : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_ASSIGN(T)> struct
33 template <class T> struct is_nothrow_move_assignable<T const> : public false_type{}; struct
34 template <class T> struct is_nothrow_move_assignable<T volatile> : public false_type{}; struct
35 template <class T> struct is_nothrow_move_assignable<T const volatile> : public false_type{}; struct
36 template <class T> struct is_nothrow_move_assignable<T&> : public false_type{}; struct
38 template <class T> struct is_nothrow_move_assignable<T&&> : public false_type{}; struct
83 template <> struct is_nothrow_move_assignable<void> : public false_type{}; struct
85 template <> struct is_nothrow_move_assignable<void const> : public false_type{}; struct
86 template <> struct is_nothrow_move_assignable<void const volatile> : public false_type{}; struct
87 template <> struct is_nothrow_move_assignable<void volatile> : public false_type{}; struct
/third_party/boost/boost/poly_collection/detail/
Dvalue_holder.hpp78 using is_nothrow_move_assignable=std::is_nothrow_move_assignable<T>; typedef in boost::poly_collection::detail::value_holder
/third_party/boost/boost/move/detail/
Dtype_traits.hpp883 struct is_nothrow_move_assignable struct
884 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_ASSIGNABLE(T); };