4#ifndef TETL_ITERATOR_NEXT_HPP
5#define TETL_ITERATOR_NEXT_HPP
7#include <etl/_iterator/advance.hpp>
8#include <etl/_iterator/iterator_traits.hpp>
14template <
typename InputIt>
15[[nodiscard]]
constexpr auto next(InputIt it,
typename iterator_traits<InputIt>::difference_type n = 1) -> InputIt
constexpr auto next(InputIt it, typename iterator_traits< InputIt >::difference_type n=1) -> InputIt
Return the nth successor of iterator it.
Definition next.hpp:15
Definition adjacent_find.hpp:9
iterator_traits is the type trait class that provides uniform interface to the properties of LegacyIt...
Definition iterator_traits.hpp:48