11 releases (3 major breaking)
3.2.2 | Dec 5, 2021 |
---|---|
3.1.0 | Dec 5, 2021 |
2.0.0 | Dec 4, 2021 |
1.0.0 | Dec 4, 2021 |
0.1.1 |
|
#8 in #community
62 downloads per month
50KB
1.5K
SLoC
collectivity
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.
Examples
#![feature(box_syntax)]
use collectivity::{nosafety::Insert, Len};
use std::{
collections::{BTreeMap, HashMap, VecDeque},
time::Instant,
};
pub trait MyTraitSelection<K, V>: Insert<K, V> + Len {}
impl<K, V, C: Insert<K, V> + Len> MyTraitSelection<K, V> for C {}
fn main() {
const N: usize = 10_000_000;
let data = (0..N).map(|n| (n, n)).collect::<Vec<_>>();
let collections: &mut [(&str, Box<dyn MyTraitSelection<_, _>>)] = &mut [
("Array", box [0_usize; N] as _),
("Vec", box vec![] as _),
("VecDeque", box VecDeque::new() as _),
("BTreeMap", box BTreeMap::new() as _),
("HashMap", box HashMap::new() as _),
];
collections.iter_mut().for_each(|(name, c)| {
let t = Instant::now();
data.iter().for_each(|(k, v)| c.insert(*k, *v));
println!(
"{:<10}: inserted in {:<15}, len: {}",
name,
format!("{:#?}", t.elapsed()),
c.len()
);
});
}
License: MIT
Dependencies
~0–0.9MB
~17K SLoC