Home | History | Annotate | Download | only in include

Lines Matching refs:_T

49 template<typename _Category, typename _T, typename _Distance = ptrdiff_t,
50 typename _Pointer = _T*, typename _Reference = _T&>
54 typedef _T value_type;
74 template<typename _T>
75 struct iterator_traits<_T*>
78 typedef _T value_type;
80 typedef _T* pointer;
81 typedef _T& reference;
84 template<typename _T>
85 struct iterator_traits<const _T*>
88 typedef _T value_type;
90 typedef const _T* pointer;
91 typedef const _T& reference;
220 template<typename _T>