Valkyrie 2026
Loading...
Searching...
No Matches
valor::EigenUnit::ValidElemArgs Concept Reference

Concept verifying that a pack of arguments matches the required units for a UnitMatrix. More...

#include <valkyrie/util/eigenunit/Common.h>

Concept definition

template<typename OutTuple, typename InTuple, typename... Args>
concept valor::EigenUnit::ValidElemArgs = (sizeof...(Args) == std::tuple_size_v<OutTuple> * std::tuple_size_v<InTuple>) &&
ValidElemArgsImpl<OutTuple, InTuple, std::tuple<Args...>, std::make_index_sequence<sizeof...(Args)>>::value
Concept verifying that a pack of arguments matches the required units for a UnitMatrix.
Definition Common.h:315
Implementation details for checking variadic matrix element arguments.
Definition Common.h:300

Detailed Description

Concept verifying that a pack of arguments matches the required units for a UnitMatrix.