forked from rust-ndarray/ndarray
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request rust-ndarray#4 from jturner314/as-contiguous-method
Refine Cow stuff and as_standard_layout impl
- Loading branch information
Showing
5 changed files
with
118 additions
and
98 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,55 @@ | ||
// Copyright 2019 ndarray developers. | ||
// | ||
// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or | ||
// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license | ||
// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your | ||
// option. This file may not be copied, modified, or distributed | ||
// except according to those terms. | ||
|
||
use crate::imp_prelude::*; | ||
|
||
/// Methods specific to `ArrayCow`. | ||
/// | ||
/// ***See also all methods for [`ArrayBase`]*** | ||
/// | ||
/// [`ArrayBase`]: struct.ArrayBase.html | ||
impl<'a, A, D> ArrayCow<'a, A, D> | ||
where | ||
D: Dimension, | ||
{ | ||
pub fn is_view(&self) -> bool { | ||
self.data.is_view() | ||
} | ||
|
||
pub fn is_owned(&self) -> bool { | ||
self.data.is_owned() | ||
} | ||
} | ||
|
||
impl<'a, A, D> From<ArrayView<'a, A, D>> for ArrayCow<'a, A, D> | ||
where | ||
D: Dimension, | ||
{ | ||
fn from(view: ArrayView<'a, A, D>) -> ArrayCow<'a, A, D> { | ||
ArrayBase { | ||
data: CowRepr::View(view.data), | ||
ptr: view.ptr, | ||
dim: view.dim, | ||
strides: view.strides, | ||
} | ||
} | ||
} | ||
|
||
impl<'a, A, D> From<Array<A, D>> for ArrayCow<'a, A, D> | ||
where | ||
D: Dimension, | ||
{ | ||
fn from(array: Array<A, D>) -> ArrayCow<'a, A, D> { | ||
ArrayBase { | ||
data: CowRepr::Owned(array.data), | ||
ptr: array.ptr, | ||
dim: array.dim, | ||
strides: array.strides, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -25,6 +25,7 @@ pub use crate::{ | |
Array, | ||
ArcArray, | ||
RcArray, | ||
ArrayCow, | ||
ArrayView, | ||
ArrayViewMut, | ||
RawArrayView, | ||
|