Home | History | Annotate | Download | only in include

Lines Matching full:rend

318 template <class C> auto rend(C& c) -> decltype(c.rend());                     // C++14
319 template <class C> auto rend(const C& c) -> decltype(c.rend()); // C++14
321 template <class E> reverse_iterator<const E*> rend(initializer_list<E> il); // C++14
323 template <class T, size_t N> reverse_iterator<T*> rend(T (&array)[N]); // C++14
325 template <class C> auto crend(const C& c) -> decltype(std::rend(c)); // C++14
1461 reverse_iterator<_Tp*> rend(_Tp (&__array)[_Np])
1475 reverse_iterator<const _Ep*> rend(initializer_list<_Ep> __il)
1510 auto rend(_Cp& __c) -> decltype(__c.rend())
1512 return __c.rend();
1517 auto rend(const _Cp& __c) -> decltype(__c.rend())
1519 return __c.rend();
1531 auto crend(const _Cp& __c) -> decltype(rend(__c))
1533 return rend(__c);