Trait ore::vec::Vector[][src]

pub trait Vector<T> {
    fn push(&mut self, value: T);
fn extend_from_slice(&mut self, other: &[T])
    where
        T: Copy
; }
Expand description

A trait for objects that behave like vectors.

Required methods

Appends an element to the vector.

Copies and appends all elements in a slice to the vector.

Implementations on Foreign Types

Implementors