numerics 0.1.0
Loading...
Searching...
No Matches
num::ContiguousDenseMatrixLike Concept Reference

Contiguous dense row-major real matrix storage. More...

#include <concepts.hpp>

Concept definition

template<class A>
concept num::ContiguousDenseMatrixLike = DenseMatrixLike<A> && requires(A a, const A ca) {
{ ca.data() } -> std::convertible_to<const real*>;
{ a.data() } -> std::convertible_to<real*>;
}
Contiguous dense row-major real matrix storage.
Definition concepts.hpp:49
Dense row-major real matrix interface.
Definition concepts.hpp:33

Detailed Description

Contiguous dense row-major real matrix storage.

Definition at line 49 of file concepts.hpp.