Type Definition ndarray::ArrayViewMut [−][src]
type ArrayViewMut<'a, A, D> = ArrayBase<ViewRepr<&'a mut A>, D>;
Expand description
A read-write array view.
An array view represents an array or a part of it, created from an iterator, subview or slice of an array.
The ArrayViewMut<'a, A, D>
is parameterized by 'a
for the scope of the
borrow, A
for the element type and D
for the dimensionality.
Array views have all the methods of an array (see ArrayBase
).
See also ArrayView
.
Implementations
Methods for read-write array views.
pub fn from_shape<Sh>(shape: Sh, xs: &'a mut [A]) -> Result<Self, ShapeError> where
Sh: Into<StrideShape<D>>,
[src]
pub fn from_shape<Sh>(shape: Sh, xs: &'a mut [A]) -> Result<Self, ShapeError> where
Sh: Into<StrideShape<D>>,
[src]Create a read-write array view borrowing its data from a slice.
Checks whether dim
and strides
are compatible with the slice’s
length, returning an Err
if not compatible.
use ndarray::ArrayViewMut; use ndarray::arr3; use ndarray::ShapeBuilder; let mut s = [0, 1, 2, 3, 4, 5, 6, 7, 8, 9, 10, 11, 12]; let mut a = ArrayViewMut::from_shape((2, 3, 2).strides((1, 4, 2)), &mut s).unwrap(); a[[0, 0, 0]] = 1; assert!( a == arr3(&[[[1, 2], [4, 6], [8, 10]], [[1, 3], [5, 7], [9, 11]]]) ); assert!(a.strides() == &[1, 4, 2]);
pub unsafe fn from_shape_ptr<Sh>(shape: Sh, ptr: *mut A) -> Self where
Sh: Into<StrideShape<D>>,
[src]
pub unsafe fn from_shape_ptr<Sh>(shape: Sh, ptr: *mut A) -> Self where
Sh: Into<StrideShape<D>>,
[src]Create an ArrayViewMut<A, D>
from shape information and a
raw pointer to the elements.
Unsafe because caller is responsible for ensuring that the pointer is valid, not aliased and coherent with the dimension and stride information.
Split the array view along axis
and return one mutable view strictly
before the split and one mutable view after the split.
Panics if axis
or index
is out of bounds.
Return the array’s data as a slice, if it is contiguous and in standard order.
Return None
otherwise.
Trait Implementations
Implementation of ArrayViewMut::from(&mut A)
where A
is an array.
Create a read-write array view of the array.
Implementation of ArrayViewMut::from(&mut S)
where S
is a slice or slicable.
Create a one-dimensional read-write array view of the data in slice
.
impl<'a, I, A, D> IndexLonger<I> for ArrayViewMut<'a, A, D> where
I: NdIndex<D>,
D: Dimension,
[src]
impl<'a, I, A, D> IndexLonger<I> for ArrayViewMut<'a, A, D> where
I: NdIndex<D>,
D: Dimension,
[src]Convert a mutable array view to a mutable reference of a element.
This method is like IndexMut::index_mut
but with a longer lifetime
(matching the array view); which we can only do for the array view and
not in the Index
trait.
See also the get_mut
method which works for all arrays and array
views.
Panics if index is out of bounds.
Convert a mutable array view to a mutable reference of a element, with checked access.
See also the get_mut
method which works for all arrays and array
views.
Convert a mutable array view to a mutable reference of a element without boundary check.
See also the uget_mut
method which works for all arrays and array
views.
Note: only unchecked for non-debug builds of ndarray.