Skip to content
Open
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 6 additions & 3 deletions src/impl_methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -335,7 +335,8 @@ where
/// Return a sliced view of the array.
///
/// See [*Slicing*](#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
/// See also [`s!`], [`SliceArg`], [`SliceInfo`](crate::SliceInfo),
/// [`.slice_mut()`]: #method.slice_mut and [`.slice_move()`]: #method.slice_move.
///
/// **Panics** if an index is out of bounds or step size is zero.<br>
/// (**Panics** if `D` is `IxDyn` and `info` does not match the number of array axes.)
Expand All @@ -350,7 +351,8 @@ where
/// Return a sliced read-write view of the array.
///
/// See [*Slicing*](#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
/// See also [`s!`], [`SliceArg`], [`SliceInfo`](crate::SliceInfo),
/// [`.slice()`]: #method.slice and [`.slice_move()`]: #method.slice_move.
///
/// **Panics** if an index is out of bounds or step size is zero.<br>
/// (**Panics** if `D` is `IxDyn` and `info` does not match the number of array axes.)
Expand Down Expand Up @@ -396,7 +398,8 @@ where
/// Slice the array, possibly changing the number of dimensions.
///
/// See [*Slicing*](#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
/// See also [`s!`], [`SliceArg`], [`SliceInfo`](crate::SliceInfo),
/// [`.slice()`]: #method.slice and [`.slice_mut()`]: #method.slice_mut.
///
/// **Panics** if an index is out of bounds or step size is zero.<br>
/// (**Panics** if `D` is `IxDyn` and `info` does not match the number of array axes.)
Expand Down