1 2 3 4 5 6 7 8 9 10
//! High-velocity vectors by [Nikolai Vazquez](https://nikolaivazquez.com). #![no_std] #[cfg(feature = "alloc")] extern crate alloc; // Do not use `std` prelude to prevent assuming it's always available. #[cfg(feature = "std")] extern crate std;