[][src]Struct spaces::product::LinearSpace

pub struct LinearSpace<D> { /* fields omitted */ }

N-dimensional homogeneous space.

Methods

impl<D: Space> LinearSpace<D>[src]

pub fn new(dimensions: Vec<D>) -> Self[src]

pub fn push(self, d: D) -> Self[src]

impl<D> LinearSpace<D>[src]

pub fn empty() -> Self[src]

pub fn iter(&self) -> SliceIter<D>[src]

pub fn into_iter(self) -> VecIntoIter<D>[src]

impl LinearSpace<Interval>[src]

pub fn partitioned(self, density: usize) -> LinearSpace<Partition>[src]

impl LinearSpace<Partition>[src]

pub fn centres(&self) -> Vec<Vec<f64>>[src]

Trait Implementations

impl<D: Space> Space for LinearSpace<D>[src]

type Value = Vector<D::Value>

The data representation of the space.

impl<D, X> Surjection<Vec<X>, Vec<<D as Space>::Value>> for LinearSpace<D> where
    D: Space + Surjection<X, <D as Space>::Value>, 
[src]

impl<D, X> Surjection<ArrayBase<OwnedRepr<X>, Dim<[usize; 1]>>, ArrayBase<OwnedRepr<<D as Space>::Value>, Dim<[usize; 1]>>> for LinearSpace<D> where
    D: Space + Surjection<X, <D as Space>::Value>,
    X: Clone
[src]

impl<D: Space + Enclose + Clone> Enclose<LinearSpace<D>> for LinearSpace<D>[src]

fn enclose_many(self, other_spaces: &[S]) -> Self where
    Self: Sized
[src]

Return the smallest space enclosing self and all other_spaces of type Self.

impl<D: Eq> Eq for LinearSpace<D>[src]

impl<D: PartialEq> PartialEq<LinearSpace<D>> for LinearSpace<D>[src]

impl<D: Clone> Clone for LinearSpace<D>[src]

default fn clone_from(&mut self, source: &Self)
1.0.0
[src]

Performs copy-assignment from source. Read more

impl<D: Space> IntoIterator for LinearSpace<D>[src]

type Item = D

The type of the elements being iterated over.

type IntoIter = IntoIter<D>

Which kind of iterator are we turning this into?

impl<D: Debug> Debug for LinearSpace<D>[src]

impl<D: Space> FromIterator<D> for LinearSpace<D>[src]

impl<D: Space> Add<D> for LinearSpace<D>[src]

type Output = Self

The resulting type after applying the + operator.

impl<D: Space> Add<LinearSpace<D>> for LinearSpace<D>[src]

type Output = Self

The resulting type after applying the + operator.

impl<D: Space> Index<usize> for LinearSpace<D>[src]

type Output = D

The returned type after indexing.

impl<D: Space + Display> Display for LinearSpace<D>[src]

impl<'de, D> Deserialize<'de> for LinearSpace<D> where
    D: Deserialize<'de>, 
[src]

impl<D> Serialize for LinearSpace<D> where
    D: Serialize
[src]

Auto Trait Implementations

impl<D> Send for LinearSpace<D> where
    D: Send

impl<D> Sync for LinearSpace<D> where
    D: Sync

Blanket Implementations

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

type Owned = T

impl<T> ToString for T where
    T: Display + ?Sized
[src]

impl<T> From for T[src]

impl<I> IntoIterator for I where
    I: Iterator
[src]

type Item = <I as Iterator>::Item

The type of the elements being iterated over.

type IntoIter = I

Which kind of iterator are we turning this into?

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

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

type Error = Infallible

The type returned in the event of a conversion error.

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

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

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

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

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

The type returned in the event of a conversion error.

impl<T> DeserializeOwned for T where
    T: Deserialize<'de>, 
[src]