4#ifndef TETL_ITERATOR_ADVANCE_HPP
5#define TETL_ITERATOR_ADVANCE_HPP
7#include <etl/_iterator/iterator_traits.hpp>
8#include <etl/_iterator/tags.hpp>
9#include <etl/_type_traits/is_base_of.hpp>
22template <
typename It,
typename Distance>
23constexpr auto advance(It& it, Distance n) ->
void
constexpr auto advance(It &it, Distance n) -> void
Increments given iterator it by n elements.
Definition advance.hpp:23
Definition adjacent_find.hpp:9
Defines the category of an iterator. Each tag is an empty type and corresponds to one of the five (un...
Definition tags.hpp:31
iterator_traits is the type trait class that provides uniform interface to the properties of LegacyIt...
Definition iterator_traits.hpp:48
Defines the category of an iterator. Each tag is an empty type and corresponds to one of the five (un...
Definition tags.hpp:37