Searched defs:is_destructible (Results 1 – 1 of 1) sorted by relevance
35 …template <class T> struct is_destructible : public integral_constant<bool, sizeof(detail::is_destr… struct48 template <> struct is_destructible<void> : public false_type{}; struct49 template <> struct is_destructible<void const> : public false_type{}; struct50 template <> struct is_destructible<void volatile> : public false_type{}; struct51 template <> struct is_destructible<void const volatile> : public false_type{}; struct52 template <class T> struct is_destructible<T&> : public is_destructible<T>{}; struct54 template <class T> struct is_destructible<T&&> : public is_destructible<T>{}; struct56 template <class T, std::size_t N> struct is_destructible<T[N]> : public is_destructible<T>{}; struct57 template <class T> struct is_destructible<T[]> : public is_destructible<T>{}; struct