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

Constrains a type to have a member function reduceElementWise() const that takes a ValueType& and size_t argument. More...

Concept definition

template<class T, class ValueType>
concept vctr::has::reduceElementWise = requires (const T&t, ValueType& v) { t.reduceElementWise (v, size_t()); }
Constrains a type to have a member function reduceElementWise() const that takes a ValueType& and siz...
Definition: ContainerAndExpressionConcepts.h:98
typename detail::ValueType< std::remove_cvref_t< T > >::Type ValueType
If T is an expression template, it equals its return type, if it's a type that defines value_type as ...
Definition: Traits.h:201

Detailed Description

Constrains a type to have a member function reduceElementWise() const that takes a ValueType& and size_t argument.