ncarray::Shaped
ncarray::Shaped
Section titled “ncarray::Shaped”Definition
Section titled “Definition”template<typename T>concept= requires(const T arr) { { arr.ndim() } -> convertible_to<ssize_t>; { arr.shape() } -> convertible_to<const ssize_t*>; };Detailed Description
Section titled “Detailed Description”Determines an object that has dimensionality and defined shape for each axis.