Home | History | Annotate | Download | only in include

Lines Matching full:rank

79     template <class T> struct rank;
555 // rank
557 template <class _Tp> struct _LIBCPP_VISIBLE rank
559 template <class _Tp> struct _LIBCPP_VISIBLE rank<_Tp[]>
560 : public integral_constant<size_t, rank<_Tp>::value + 1> {};
561 template <class _Tp, size_t _Np> struct _LIBCPP_VISIBLE rank<_Tp[_Np]>
562 : public integral_constant<size_t, rank<_Tp>::value + 1> {};