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

#include <Concepts.h>

Concept definition

template<typename T>
concept Mcro::Range::CUnrealRange = CRangeMember<T>
&& requires(T& container, TRangeElementType<T> const& item)
{
container.Add(item);
}
TIteratorElementType< decltype(DeclVal< T >().begin())> TRangeElementType
return a range's associated content type determined by dereferencing their iterator.
Definition Concepts.h:161

Detailed Description

Definition at line 164 of file Concepts.h.