1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
/*!
# Overview

This crate contains a set of high quality (tested, documented, with complete implementation
of standard traits) collections. It is supposed to be an extension of the standard
`std::collections` crate that contains the most common collections but lacks more advanced ones.

# Usage

Cargo.toml:

```toml
[dependencies]
advanced_collections = "0.1"
```

*/

pub mod counter;
pub mod disjoint_set;
pub mod circular_buffer;
pub mod interval;