advanced_collections/lib.rs
1/*!
2# Overview
3
4This crate contains a set of high quality (tested, documented, with complete implementation
5of standard traits) collections. It is supposed to be an extension of the standard
6`std::collections` crate that contains the most common collections but lacks more advanced ones.
7
8# Usage
9
10Cargo.toml:
11
12```toml
13[dependencies]
14advanced_collections = "0.1"
15```
16
17*/
18
19pub mod counter;
20pub mod disjoint_set;
21pub mod circular_buffer;
22pub mod interval;