Stratax
Scientific computing containers and operations
Loading...
Searching...
No Matches
NDarray Concept Reference

Matches array-like container types with shape, size, and iteration support. More...

#include <Concepts.hpp>

Concept definition

template<typename T>
concept NDarray =
{
a.shape();
a.size();
a.begin();
a.end();
}
Matches array-like container types with shape, size, and iteration support.
Definition Concepts.hpp:211
std::remove_cvref_t< T > clean_t
Removes cv-qualifiers and references from a type.
Definition Concepts.hpp:17

Detailed Description

Matches array-like container types with shape, size, and iteration support.

Template Parameters
TType to test.

Definition at line 211 of file Concepts.hpp.