[][src]Struct nodespeak::util::NVec

pub struct NVec<T> { /* fields omitted */ }

Implementations

impl<T: Clone> NVec<T>[src]

pub fn build_ok<E>(
    dimensions: Vec<usize>,
    value_builder: impl FnMut(Vec<usize>) -> Result<T, E>
) -> Result<NVec<T>, E>
[src]

pub fn build(
    dimensions: Vec<usize>,
    value_builder: impl FnMut(Vec<usize>) -> T
) -> NVec<T>
[src]

pub fn new(dimensions: Vec<usize>, filler_value: T) -> NVec<T>[src]

pub fn from_vec(items: Vec<T>) -> NVec<T>[src]

pub fn from_vec_and_dims(items: Vec<T>, dimensions: Vec<usize>) -> NVec<T>[src]

pub fn collect(sub_arrays: Vec<NVec<T>>) -> NVec<T>[src]

pub fn map<F, U>(&self, mutator: F) -> NVec<U> where
    F: Fn(&T) -> U,
    U: Clone
[src]

pub fn is_slice_inside(&self, coordinate: &[usize]) -> bool[src]

pub fn is_inside(&self, coordinate: &[usize]) -> bool[src]

pub fn set_item(&mut self, coordinate: &[usize], value: T)[src]

pub fn clone_slice(&self, coordinate: &[usize]) -> Self[src]

pub fn borrow_item(&self, coordinate: &[usize]) -> &T[src]

pub fn borrow_item_mut(&mut self, coordinate: &[usize]) -> &mut T[src]

pub fn borrow_all_items(&self) -> &Vec<T>[src]

pub fn borrow_dimensions(&self) -> &[usize][src]

Trait Implementations

impl<T: Clone> Clone for NVec<T>[src]

impl<T: Debug> Debug for NVec<T>[src]

impl<T: PartialEq> PartialEq<NVec<T>> for NVec<T>[src]

impl<T> StructuralPartialEq for NVec<T>[src]

Auto Trait Implementations

impl<T> RefUnwindSafe for NVec<T> where
    T: RefUnwindSafe

impl<T> Send for NVec<T> where
    T: Send

impl<T> Sync for NVec<T> where
    T: Sync

impl<T> Unpin for NVec<T> where
    T: Unpin

impl<T> UnwindSafe for NVec<T> where
    T: UnwindSafe

Blanket Implementations

impl<T> Any for T where
    T: 'static + ?Sized
[src]

impl<T> Borrow<T> for T where
    T: ?Sized
[src]

impl<T> BorrowMut<T> for T where
    T: ?Sized
[src]

impl<T> From<T> for T[src]

impl<T, U> Into<U> for T where
    U: From<T>, 
[src]

impl<T> ToOwned for T where
    T: Clone
[src]

type Owned = T

The resulting type after obtaining ownership.

impl<T, U> TryFrom<U> for T where
    U: Into<T>, 
[src]

type Error = Infallible

The type returned in the event of a conversion error.

impl<T, U> TryInto<U> for T where
    U: TryFrom<T>, 
[src]

type Error = <U as TryFrom<T>>::Error

The type returned in the event of a conversion error.