tetl 0.1.0
Embedded Template Library
Loading...
Searching...
No Matches
rbegin.hpp File Reference

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename Container>
constexpr auto crbegin (Container const &c) -> decltype(rbegin(c))
 
template<typename Container>
constexpr auto rbegin (Container &c) -> decltype(c.rbegin())
 Returns an iterator to the reverse-beginning of the given container.
 
template<typename Container>
constexpr auto rbegin (Container const &c) -> decltype(c.rbegin())
 
template<typename T, size_t N>
constexpr auto rbegin (T(&array)[N]) -> reverse_iterator< T * >