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

Constrains the type to be an input iterator with a value type suitable to construct an ElementType. More...

Concept definition

template<class T, class ElementType>
concept vctr::is::inputIteratorToConstructValuesOfType = std::input_iterator<T> && std::constructible_from<ElementType, std::iter_value_t<T>>
Constrains the type to be an input iterator with a value type suitable to construct an ElementType.
Definition: ContainerAndExpressionConcepts.h:355

Detailed Description

Constrains the type to be an input iterator with a value type suitable to construct an ElementType.