@@ -892,7 +892,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
892
892
/// **Panics** if any dimension of `chunk_size` is zero<br>
893
893
/// (**Panics** if `D` is `IxDyn` and `chunk_size` does not match the
894
894
/// number of array axes.)
895
- pub fn exact_chunks < E > ( & self , chunk_size : E ) -> ExactChunks < A , D >
895
+ pub fn exact_chunks < E > ( & self , chunk_size : E ) -> ExactChunks < A , D >
896
896
where E : IntoDimension < Dim =D > ,
897
897
{
898
898
exact_chunks_of ( self . view ( ) , chunk_size)
@@ -930,7 +930,7 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
930
930
/// [6, 6, 7, 7, 8, 8, 0],
931
931
/// [6, 6, 7, 7, 8, 8, 0]]));
932
932
/// ```
933
- pub fn exact_chunks_mut < E > ( & mut self , chunk_size : E ) -> ExactChunksMut < A , D >
933
+ pub fn exact_chunks_mut < E > ( & mut self , chunk_size : E ) -> ExactChunksMut < A , D >
934
934
where E : IntoDimension < Dim =D > ,
935
935
S : DataMut
936
936
{
@@ -941,13 +941,13 @@ impl<A, S, D> ArrayBase<S, D> where S: Data<Elem=A>, D: Dimension
941
941
///
942
942
/// The windows are all distinct overlapping views of size `window_size`
943
943
/// that fit into the array's shape.
944
- ///
944
+ ///
945
945
/// Will yield over no elements if window size is larger
946
946
/// than the actual array size of any dimension.
947
947
///
948
948
/// The produced element is an `ArrayView<A, D>` with exactly the dimension
949
949
/// `window_size`.
950
- ///
950
+ ///
951
951
/// **Panics** if any dimension of `window_size` is zero.<br>
952
952
/// (**Panics** if `D` is `IxDyn` and `window_size` does not match the
953
953
/// number of array axes.)
0 commit comments