//! The vector module.
//!//! Currently contains all code
//! relating to the vector linear algebra struct.
modimpl_ops;modimpl_vec;/// The Vector struct.
////// Can be instantiated with any type.
#[derive(Debug, PartialEq, Eq, Hash)]pubstructVector<T>{size:usize,
data:Vec<T>,
}