Generic collection traits. The crate contains definitions of various traits related to data collections, as well as their implementations for arrays, slices, and collection types from both the standard library and a selection of popular community crates.
The goal of this project is to provide useful abstractions for working with collections that allow for decoupling their implementation details from application logic. This can make data structures interchangeable, making it easier to fine-tune the performance characteristics of a program.
Most of the abstracted behaviors are already implemented by the underlying containers. In such cases, the provided trait implementations simply delegate to appropriate methods while standardizing argument and return types.
```rust
use collectivity::{nosafety::Insert, Len}; use std::{ collections::{BTreeMap, HashMap, VecDeque}, time::Instant, };
pub trait MyTraitSelection
impl
fn main() {
const N: usize = 10000000;
let data = (0..N).map(|n| (n, n)).collect::
License: MIT