3#ifndef TETL_ITERATOR_BEGIN_HPP
4#define TETL_ITERATOR_BEGIN_HPP
20constexpr auto begin(C& c) ->
decltype(c.begin())
27constexpr auto begin(C
const& c) ->
decltype(c.begin())
33template <
typename T, etl::
size_t N>
constexpr auto cbegin(C const &c) noexcept(noexcept(begin(c))) -> decltype(begin(c))
Definition begin.hpp:41
constexpr auto begin(C &c) -> decltype(c.begin())
Returns an iterator to the beginning of the given container c or array array. These templates rely on...
Definition begin.hpp:20
Definition adjacent_find.hpp:8
A container that encapsulates fixed size arrays.
Definition array.hpp:48