VCTR
Loading...
Searching...
No Matches
vctr::has::reduceVectorOp Concept Reference

Constrains a type to have a member function reduceVectorOp() const that returns a DstType value. More...

Concept definition

template<class T, class DstType>
concept vctr::has::reduceVectorOp = requires (const T& t) { { t.reduceVectorOp() } -> std::same_as<DstType>; }
Constrains a type to have a member function reduceVectorOp() const that returns a DstType value.
Definition: ContainerAndExpressionConcepts.h:102

Detailed Description

Constrains a type to have a member function reduceVectorOp() const that returns a DstType value.