Searched defs:has_nothrow_assign (Results 1 – 2 of 2) sorted by relevance
53 struct has_nothrow_assign : public integral_constant < bool, struct69 template <class T, std::size_t N> struct has_nothrow_assign <T[N]> : public has_nothrow_assign<T> {… struct70 template <> struct has_nothrow_assign<void> : public false_type{}; struct71 template <class T> struct has_nothrow_assign<T volatile> : public false_type{}; struct72 template <class T> struct has_nothrow_assign<T&> : public false_type{}; struct74 template <class T> struct has_nothrow_assign<T&&> : public false_type{}; struct77 template <> struct has_nothrow_assign<void const> : public false_type{}; struct78 template <> struct has_nothrow_assign<void const volatile> : public false_type{}; struct79 template <> struct has_nothrow_assign<void volatile> : public false_type{}; struct
1459 void has_nothrow_assign() { in has_nothrow_assign() function