@@ -50,7 +50,7 @@ use crate::types::{NpyDataType, TypeNum};
50
50
/// All data types you can use implements [TypeNum](../types/trait.TypeNum.html).
51
51
///
52
52
/// Dimensions are represented by ndarray's
53
- /// [Dimension](https://docs.rs/ndarray/0.12 /ndarray/trait.Dimension.html) trait.
53
+ /// [Dimension](https://docs.rs/ndarray/latest /ndarray/trait.Dimension.html) trait.
54
54
///
55
55
/// Typically, you can use `Ix1, Ix2, ..` for fixed size arrays, and use `IxDyn` for dynamic
56
56
/// dimensioned arrays. They're re-exported from `ndarray` crate.
@@ -59,7 +59,7 @@ use crate::types::{NpyDataType, TypeNum};
59
59
/// or [`PyArrayDyn`](./type.PyArrayDyn.html).
60
60
///
61
61
/// To specify concrete dimension like `3×4×5`, you can use types which implements ndarray's
62
- /// [`IntoDimension`](https://docs.rs/ndarray/0.12 /ndarray/dimension/conversion/trait.IntoDimension.html)
62
+ /// [`IntoDimension`](https://docs.rs/ndarray/latest /ndarray/dimension/conversion/trait.IntoDimension.html)
63
63
/// trait. Typically, you can use array(e.g. `[3, 4, 5]`) or tuple(e.g. `(3, 4, 5)`) as a dimension.
64
64
///
65
65
/// # Example
@@ -497,7 +497,7 @@ impl<T: TypeNum, D: Dimension> PyArray<T, D> {
497
497
}
498
498
499
499
/// Construct PyArray from
500
- /// [`ndarray::Array`](https://docs.rs/ndarray/0.12 /ndarray/type.Array.html).
500
+ /// [`ndarray::Array`](https://docs.rs/ndarray/latest /ndarray/type.Array.html).
501
501
///
502
502
/// This method uses internal [`Vec`](https://doc.rust-lang.org/std/vec/struct.Vec.html)
503
503
/// of `ndarray::Array` as numpy array.
@@ -516,7 +516,7 @@ impl<T: TypeNum, D: Dimension> PyArray<T, D> {
516
516
}
517
517
518
518
/// Get the immutable view of the internal data of `PyArray`, as
519
- /// [`ndarray::ArrayView`](https://docs.rs/ndarray/0.12 /ndarray/type.ArrayView.html).
519
+ /// [`ndarray::ArrayView`](https://docs.rs/ndarray/latest /ndarray/type.ArrayView.html).
520
520
///
521
521
/// # Example
522
522
/// ```
@@ -659,7 +659,7 @@ impl<T: TypeNum, D: Dimension> PyArray<T, D> {
659
659
660
660
impl < T : TypeNum + Clone , D : Dimension > PyArray < T , D > {
661
661
/// Get a copy of `PyArray` as
662
- /// [`ndarray::Array`](https://docs.rs/ndarray/0.12 /ndarray/type.Array.html).
662
+ /// [`ndarray::Array`](https://docs.rs/ndarray/latest /ndarray/type.Array.html).
663
663
///
664
664
/// # Example
665
665
/// ```
0 commit comments