//! Construct `StaticVector`/`DynamicVector` and run each vector operation on them.
//!//! Run with: `cargo run --example vector` (static only), or
//! `cargo run --example vector --features alloc` (static and dynamic)
modstatic_vector;#[cfg(feature ="alloc")]moddynamic_vector;fnmain(){static_vector::run();#[cfg(feature ="alloc")]dynamic_vector::run();}