ncarray::MutableArrayLike
ncarray::MutableArrayLike
Section titled “ncarray::MutableArrayLike”Definition
Section titled “Definition”template<typename T>concept= ArrayLike<T> && requires(T arr) { { arr.data() } -> same_as<void*>; };Detailed Description
Section titled “Detailed Description”Determines an array that is mutable. Deprecated read only The array mutability is now accessed via abool flag. deprecated_1_deprecated000001 Todo Update concepts for correct mutability checks. todo_1_todo000003