Home
last modified time | relevance | path

Searched defs:is_nothrow_move_constructible (Results 1 – 4 of 4) sorted by relevance

/third_party/boost/boost/type_traits/
Dis_nothrow_move_constructible.hpp27 struct is_nothrow_move_constructible : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_CONSTRU… struct
32 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; struct
33 template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_t… struct
83 template <> struct is_nothrow_move_constructible<void> : false_type{}; struct
85 template <> struct is_nothrow_move_constructible<void const> : false_type{}; struct
86 template <> struct is_nothrow_move_constructible<void volatile> : false_type{}; struct
87 template <> struct is_nothrow_move_constructible<void const volatile> : false_type{}; struct
90 template <class T> struct is_nothrow_move_constructible<T&> : public ::boost::true_type{}; struct
92 template <class T> struct is_nothrow_move_constructible<T&&> : public ::boost::true_type{}; struct
/third_party/boost/boost/variant/
Drecursive_wrapper_fwd.hpp71 template <class T> struct is_nothrow_move_constructible<recursive_wrapper<T> > : boost::false_type{… struct
/third_party/boost/boost/poly_collection/detail/
Dvalue_holder.hpp74 using is_nothrow_move_constructible=std::is_nothrow_move_constructible<T>; typedef in boost::poly_collection::detail::value_holder
/third_party/boost/boost/move/detail/
Dtype_traits.hpp869 struct is_nothrow_move_constructible struct
870 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_CONSTRUCTIBLE(T); };