algorithmica 0.1.10

Rust Algorithms
Documentation
1
2
3
4
5
6
7
8
9
// Bag is a simple data structure that only support the adding
// elements an iterating through them
// It does not support the remove operation

pub mod r#box;
pub mod rc;

pub use r#box::Bag as BoxBag;
pub use rc::Bag as RcBag;