tetl 0.1.0
Embedded Template Library
|
Go to the source code of this file.
Namespaces | |
namespace | etl |
Functions | |
template<typename Container> | |
constexpr auto | crend (Container const &c) -> decltype(rend(c)) |
Returns an iterator to the reverse-end of the given container. | |
template<typename Container> | |
constexpr auto | rend (Container &c) -> decltype(c.rend()) |
Returns an iterator to the reverse-end of the given container. | |
template<typename Container> | |
constexpr auto | rend (Container const &c) -> decltype(c.rend()) |
template<typename T, size_t N> | |
constexpr auto | rend (T(&array)[N]) -> reverse_iterator< T * > |