//! # multid
//! multidimensional (currently just 2) vectors parameterized by number of columns and rows
//!
//! includes some helpful iterators and getters/setters, with an interface that gracefully
//! handles boundaries
//!
//! requires `feature(generic_const_exprs)`
pub use Ix2;
pub use V2;