Home | History | Annotate | Download | only in pointer.traits.types

Lines Matching defs:element_type

15 //     typedef <details> element_type;
26 typedef char element_type;
32 typedef char element_type;
48 static int element_type;
54 typedef int element_type;
59 static_assert((std::is_same<std::pointer_traits<A>::element_type, char>::value), "");
60 static_assert((std::is_same<std::pointer_traits<B<int> >::element_type, char>::value), "");
61 static_assert((std::is_same<std::pointer_traits<C<int> >::element_type, int>::value), "");
62 static_assert((std::is_same<std::pointer_traits<D<double, int> >::element_type, double>::value), "");
63 static_assert((std::is_same<std::pointer_traits<E<double, int> >::element_type, double>::value), "");
65 static_assert((std::is_same<std::pointer_traits<F<double>>::element_type, double>::value), "");