1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
//! An ordered map and set based on a binary search tree.

#![cfg_attr(feature = "range", feature(collections_bound))]

extern crate compare;

pub use map::Map;
pub use set::Set;

#[forbid(missing_docs)]
pub mod map;
#[forbid(missing_docs)]
pub mod set;

mod node;

#[cfg(feature = "ordered_iter")]
mod ordered_iter;

#[cfg(feature = "quickcheck")]
mod quickcheck;