TRIQS/nda 1.3.0
Multi-dimensional array library for C++
|
#include <nda/concepts.hpp>
Check if a given type satisfies the array concept.
An array is a multi-dimensional container of elements. It is characterized by a certain size (number of elements), rank (number of dimensions) and shape (extent of each dimension). Furthermore, it provides access to its elements by overloading the function call operator.
Examples of types satisfying this concept are e.g. nda::basic_array or nda::basic_array_view.
A | Type to check. |
Definition at line 230 of file concepts.hpp.