version 0.4
Ikarus::Concepts::TransposeAble Concept Reference

Concept defining the requirements for types that support transposition. More...

#include <ikarus/utils/concepts.hh>

Concept definition

template<typename L>
concept Ikarus::Concepts::TransposeAble = requires(L x) {
}
auto transpose(const Eigen::EigenBase< Derived > &A)
Concept defining the requirements for types that support transposition.
Definition: concepts.hh:357

Detailed Description

Template Parameters
LType of the operand.

The concept specifies that instances of type L can be transposed using the transpose function.