3#ifndef TETL_ITERATOR_END_HPP
4#define TETL_ITERATOR_END_HPP
14constexpr auto end(C& c) ->
decltype(c.end())
21constexpr auto end(C
const& c) ->
decltype(c.end())
27template <
typename T, etl::
size_t N>
28constexpr auto end(T (&
array)[N])
noexcept -> T*
35constexpr auto cend(C
const& c)
noexcept(
noexcept(
end(c))) ->
decltype(
end(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 ...
Definition end.hpp:14
constexpr auto cend(C const &c) noexcept(noexcept(end(c))) -> decltype(end(c))
Definition end.hpp:35
Definition adjacent_find.hpp:8
A container that encapsulates fixed size arrays.
Definition array.hpp:48