Searched defs:is_nothrow_move_constructible (Results 1 – 4 of 4) sorted by relevance
27 struct is_nothrow_move_constructible : public integral_constant<bool, BOOST_IS_NOTHROW_MOVE_CONSTRU… struct32 template <class T> struct is_nothrow_move_constructible<volatile T> : public ::boost::false_type {}; struct33 template <class T> struct is_nothrow_move_constructible<const volatile T> : public ::boost::false_t… struct83 template <> struct is_nothrow_move_constructible<void> : false_type{}; struct85 template <> struct is_nothrow_move_constructible<void const> : false_type{}; struct86 template <> struct is_nothrow_move_constructible<void volatile> : false_type{}; struct87 template <> struct is_nothrow_move_constructible<void const volatile> : false_type{}; struct90 template <class T> struct is_nothrow_move_constructible<T&> : public ::boost::true_type{}; struct92 template <class T> struct is_nothrow_move_constructible<T&&> : public ::boost::true_type{}; struct
71 template <class T> struct is_nothrow_move_constructible<recursive_wrapper<T> > : boost::false_type{… struct
74 using is_nothrow_move_constructible=std::is_nothrow_move_constructible<T>; typedef in boost::poly_collection::detail::value_holder
869 struct is_nothrow_move_constructible struct870 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_CONSTRUCTIBLE(T); };