Stratax 0.2.0
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 =
requires(stratax::core::concept_detail::clean_t<T>& a)
{
a.shape();
a.size();
a.begin();
a.end();
}
Matches array-like container types with shape, size, and iteration support.
Definition Concepts.hpp:211

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.