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

Go to the source code of this file.

Namespaces

namespace  etl
 

Functions

template<typename C>
constexpr auto cend (C const &c) noexcept(noexcept(end(c))) -> decltype(end(c))
 
template<typename C>
constexpr auto end (C &c) -> decltype(c.end())
 Returns an iterator to the end (i.e. the element after the last element) of the given container c or array array. These templates rely on.
 
template<typename C>
constexpr auto end (C const &c) -> decltype(c.end())
 
template<typename T, etl::size_t N>
constexpr auto end (T(&array)[N]) noexcept -> T *