Skip to content

ncarray::MutableArrayLike

template<typename T>
concept= ArrayLike<T> && requires(T arr) {
{ arr.data() } -> same_as<void*>;
};

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