version 0.4.1
Ikarus::Concepts::EigenType Concept Reference

Concept to check if a type is derived from Eigen::MatrixBase. More...

#include <ikarus/utils/concepts.hh>

Concept definition

template<typename T>
concept Ikarus::Concepts::EigenType = std::is_base_of_v<Eigen::MatrixBase<std::decay_t<T>>, std::decay_t<T>>
Concept to check if a type is derived from Eigen::MatrixBase.
Definition: utils/concepts.hh:46

Detailed Description

Template Parameters
TThe type to check.