[][src]Trait np::Full

pub trait Full<T> where
    T: Copy
{ fn full(&mut self, value: T) -> Self; }

Fillable vectors

Required methods

fn full(&mut self, value: T) -> Self

Returns a new array of given shape and type, filled with value.

Loading content...

Implementations on Foreign Types

impl<T> Full<T> for Vec<T> where
    T: Copy
[src]

impl<T> Full<T> for Vec<Vec<T>> where
    T: Copy
[src]

impl<T> Full<T> for Vec<Vec<Vec<T>>> where
    T: Copy
[src]

impl<T> Full<T> for Vec<Vec<Vec<Vec<T>>>> where
    T: Copy
[src]

Loading content...

Implementors

Loading content...