MCRO
C++23 utilities for Unreal Engine.
Loading...
Searching...
No Matches
Mcro::Range::CRandomAccessPlusMinusIterator Concept Reference

An iterator type which can natively seek its associated content in arbitrarily large steps and exposes +- operators. More...

#include <Concepts.h>

Concept definition

template<typename T>
(
&& requires(T& i)
{
{ i - 2 } -> CConvertibleToDecayed<T>;
}
)
An iterator type which can natively proceed forward in arbitrarily large steps and exposes a + operat...
Definition Concepts.h:74
An iterator type which can natively seek its associated content in arbitrarily large steps.
Definition Concepts.h:78
An iterator type which can natively seek its associated content in arbitrarily large steps and expose...
Definition Concepts.h:85

Detailed Description

An iterator type which can natively seek its associated content in arbitrarily large steps and exposes +- operators.

Definition at line 85 of file Concepts.h.