tree/
lib.rs

1//! An ordered map and set based on a binary search tree.
2
3#![cfg_attr(feature = "range", feature(collections_bound))]
4
5extern crate compare;
6
7pub use map::Map;
8pub use set::Set;
9
10#[forbid(missing_docs)]
11pub mod map;
12#[forbid(missing_docs)]
13pub mod set;
14
15mod node;
16
17#[cfg(feature = "ordered_iter")]
18mod ordered_iter;
19
20#[cfg(feature = "quickcheck")]
21mod quickcheck;