VCTR
Loading...
Searching...
No Matches
vctr::is::contiguousIteratorWithValueTypeSameAs Concept Reference

Constrains the type to be a contiguous iterator with a value type same as ElementType. More...

Concept definition

template<class T, class ElementType>
concept vctr::is::contiguousIteratorWithValueTypeSameAs = std::contiguous_iterator<T> && std::same_as<ElementType, std::iter_value_t<T>>
Constrains the type to be a contiguous iterator with a value type same as ElementType.
Definition: ContainerAndExpressionConcepts.h:359

Detailed Description

Constrains the type to be a contiguous iterator with a value type same as ElementType.