Searched defs:is_nothrow_move_constructible (Results 1 – 11 of 11) 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
4 template <class _Tp> struct is_nothrow_move_constructible { struct18 noexcept(is_nothrow_move_constructible<allocator_type>::value); argument
95 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_constructible struct101 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_constructible struct
27 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_constructible struct
13 struct is_nothrow_move_constructible struct
42 struct _LIBCPP_TEMPLATE_VIS is_nothrow_move_constructible struct
71 template <class T> struct is_nothrow_move_constructible<recursive_wrapper<T> > : boost::false_type{… struct
1039 struct is_nothrow_move_constructible struct1040 { static const bool value = BOOST_MOVE_IS_NOTHROW_MOVE_CONSTRUCTIBLE(T); };