rulinalg/vector/
mod.rs

1//! The vector module.
2//!
3//! Currently contains all code
4//! relating to the vector linear algebra struct.
5
6mod impl_ops;
7mod impl_vec;
8
9/// The Vector struct.
10///
11/// Can be instantiated with any type.
12#[derive(Debug, PartialEq, Eq, Hash)]
13pub struct Vector<T> {
14    size: usize,
15    data: Vec<T>,
16}