cl-aux 1.0.2

Provides elements that describe collections
Documentation
mod capacity;
mod capacity_upper_bound;
mod clear;
mod extend;
#[cfg(feature = "gat")]
mod get;
#[cfg(feature = "gat")]
mod get_mut;
mod insert;
#[cfg(feature = "gat")]
mod iter;
mod length;
mod push;
mod remove;
mod retain;
mod single_type_storage;
mod size_hint;
mod string;
mod swap;
mod truncate;
mod with_capacity;

pub use capacity::*;
pub use capacity_upper_bound::*;
pub use clear::*;
pub use extend::*;
#[cfg(feature = "gat")]
pub use get::*;
#[cfg(feature = "gat")]
pub use get_mut::*;
pub use insert::*;
#[cfg(feature = "gat")]
pub use iter::*;
pub use length::*;
pub use push::*;
pub use remove::*;
pub use retain::*;
pub use single_type_storage::*;
pub use size_hint::*;
pub use string::*;
pub use swap::*;
pub use truncate::*;
pub use with_capacity::*;