4#ifndef TETL_ITERATOR_INCREMENTABLE_HPP
5#define TETL_ITERATOR_INCREMENTABLE_HPP
7#include <etl/_concepts/regular.hpp>
8#include <etl/_concepts/same_as.hpp>
9#include <etl/_iterator/weakly_incrementable.hpp>
14concept incrementable =
etl::regular<T>
and etl::weakly_incrementable<T>
and requires(T i) {
15 { i++ } ->
etl::same_as<T>;
Definition adjacent_find.hpp:9