Skip to content
Open
Show file tree
Hide file tree
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
12 changes: 6 additions & 6 deletions src/impl_methods.rs
Original file line number Diff line number Diff line change
Expand Up @@ -513,7 +513,7 @@ impl<A, D: Dimension> ArrayRef<A, D>

/// Return a sliced view of the array.
///
/// See [*Slicing*](#slicing) for full documentation.
/// See [*Slicing*](ArrayBase#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
///
/// **Panics** if an index is out of bounds or step size is zero.<br>
Expand All @@ -527,7 +527,7 @@ impl<A, D: Dimension> ArrayRef<A, D>

/// Return a sliced read-write view of the array.
///
/// See [*Slicing*](#slicing) for full documentation.
/// See [*Slicing*](ArrayBase#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
///
/// **Panics** if an index is out of bounds or step size is zero.<br>
Expand All @@ -541,7 +541,7 @@ impl<A, D: Dimension> ArrayRef<A, D>

/// Return multiple disjoint, sliced, mutable views of the array.
///
/// See [*Slicing*](#slicing) for full documentation. See also
/// See [*Slicing*](ArrayBase#slicing) for full documentation. See also
/// [`MultiSliceArg`], [`s!`], [`SliceArg`], and
/// [`SliceInfo`](crate::SliceInfo).
///
Expand Down Expand Up @@ -640,7 +640,7 @@ impl<A, D: Dimension> LayoutRef<A, D>
/// [`.slice_move()`]: ArrayBase::slice_move
/// [`.index_axis_move()`]: ArrayBase::index_axis_move
///
/// See [*Slicing*](#slicing) for full documentation.
/// See [*Slicing*](ArrayBase#slicing) for full documentation.
/// See also [`s!`], [`SliceArg`], and [`SliceInfo`](crate::SliceInfo).
///
/// **Panics** in the following cases:
Expand Down Expand Up @@ -995,7 +995,7 @@ impl<A, D: Dimension> ArrayRef<A, D>
/// Returns a view restricted to `index` along the axis, with the axis
/// removed.
///
/// See [*Subviews*](#subviews) for full documentation.
/// See [*Subviews*](ArrayBase#subviews) for full documentation.
///
/// **Panics** if `axis` or `index` is out of bounds.
///
Expand Down Expand Up @@ -1315,7 +1315,7 @@ impl<A, D: Dimension> ArrayRef<A, D>
///
/// Iterator element is `ArrayView<A, D::Smaller>` (read-only array view).
///
/// See [*Subviews*](#subviews) for full documentation.
/// See [*Subviews*](ArrayBase#subviews) for full documentation.
///
/// **Panics** if `axis` is out of bounds.
///
Expand Down
2 changes: 1 addition & 1 deletion src/impl_views/splitting.rs
Original file line number Diff line number Diff line change
Expand Up @@ -153,7 +153,7 @@ where D: Dimension
/// consumes `self` and produces views with lifetimes matching that of
/// `self`.
///
/// See [*Slicing*](#slicing) for full documentation. See also
/// See [*Slicing*](ArrayBase#slicing) for full documentation. See also
/// [`MultiSliceArg`], [`s!`], [`SliceArg`](crate::SliceArg), and
/// [`SliceInfo`](crate::SliceInfo).
///
Expand Down
14 changes: 7 additions & 7 deletions src/lib.rs
Original file line number Diff line number Diff line change
Expand Up @@ -297,11 +297,11 @@ pub type Ixs = isize;
/// + [Broadcasting](#broadcasting)
/// + [Conversions](#conversions)
/// + [Constructor Methods for Owned Arrays](#constructor-methods-for-owned-arrays)
/// + [Methods For All Array Types](#methods-for-all-array-types)
/// + [Methods For 1-D Arrays](#methods-for-1-d-arrays)
/// + [Methods For 2-D Arrays](#methods-for-2-d-arrays)
/// + [Methods for Dynamic-Dimensional Arrays](#methods-for-dynamic-dimensional-arrays)
/// + [Numerical Methods for Arrays](#numerical-methods-for-arrays)
/// + [Methods For All Array Types](LayoutRef#methods-for-all-array-types)
/// + [Methods For 1-D Arrays](ArrayRef#methods-for-1-d-arrays)
/// + [Methods For 2-D Arrays](ArrayRef#methods-for-2-d-arrays)
/// + [Methods for Dynamic-Dimensional Arrays](LayoutRef#methods-for-dynamic-dimensional-arrays)
/// + [Numerical Methods for Arrays](ArrayRef#numerical-methods-for-arrays)
///
/// ## `Array`
///
Expand Down Expand Up @@ -1574,7 +1574,7 @@ pub struct RawRef<A, D>(LayoutRef<A, D>);
/// See also:
///
/// + [Constructor Methods for Owned Arrays](ArrayBase#constructor-methods-for-owned-arrays)
/// + [Methods For All Array Types](ArrayBase#methods-for-all-array-types)
/// + [Methods For All Array Types](LayoutRef#methods-for-all-array-types)
pub type ArcArray<A, D> = ArrayBase<OwnedArcRepr<A>, D>;

/// An array that owns its data uniquely.
Expand All @@ -1591,7 +1591,7 @@ pub type ArcArray<A, D> = ArrayBase<OwnedArcRepr<A>, D>;
/// See also:
///
/// + [Constructor Methods for Owned Arrays](ArrayBase#constructor-methods-for-owned-arrays)
/// + [Methods For All Array Types](ArrayBase#methods-for-all-array-types)
/// + [Methods For All Array Types](LayoutRef#methods-for-all-array-types)
/// + Dimensionality-specific type aliases
/// [`Array1`],
/// [`Array2`],
Expand Down