1
2
3
4
5
6
7
//! Ordering module.

pub mod list;
pub mod set;
pub mod sort;

pub use self::{list::*, set::*, sort::*};