Skip to content

ncarray::OwningArrayLike

template<typename T>
concept= ArrayLike<T> && requires(std::vector<ssize_t> shape, DType dtype) {
T(shape, dtype);
};

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