nd_vector 0.1.0

[WIP] Lengthen! Shrink! Iterate! Scale! Twist and turn to your imagination along any dimension on a vector!
Documentation
use crate::{Air, VectorGrid};


impl<ItemType: Air> VectorGrid<ItemType> {
    fn trim_inside(&mut self) {
        
    }

    fn trim_outside(&mut self) {
        for dimension in 0..self.dimensions() {
            let chunk_shape = vec![0..; self.dimensions()];
            for item in self.iter_chunk(chunk_shape) {

            }
        }
    }

    pub fn trim(&mut self) {
        self.trim_outside();
        self.trim_inside()
    }
}