/*!
This crate contains new traits useful for working with vector spaces.
It contains a bunch of default implementations, so you just implement a few methods to get a lot of common tools you need.
But you can also implement the methods yourself.
These traits are inteded to work with different kinds of vector implementations, like dynamically sized, dimension specific implementations or generic ones.
You can also define your library in terms of these traits instead of using a specific vector math implementation, so the user can choose, which to use, or even use multiple depending on the use case.
**/
/// Implements traits to create and get basis vectors.
pub use InnerSpace;
pub use ;
pub use VectorSpace;