ncarray::OwningArrayLike
ncarray::OwningArrayLike
Section titled “ncarray::OwningArrayLike”Definition
Section titled “Definition”template<typename T>concept= ArrayLike<T> && requires(std::vector<ssize_t> shape, DType dtype) { T(shape, dtype); };Detailed Description
Section titled “Detailed Description”Determines an array that owns (i.e., allocated space for) the data it describes. This concept is not applicable to device code. It is not usable in device code. note