//! Auxiliary elements for collections
//!
//! This crate provides a single method for each `trait` to achieve maximum flexibility and
//! freedom instead of imposing an abstraction subset for all situations and users.
extern crate alloc;
pub use *;
pub use *;
/// Alias of core::result::Result<T, Error>
pub type Result<T> = Result;