1
2
3
4
5
6
7
8
9
#![feature(zero_one)]

#![cfg_attr(test, feature(test))]
#[cfg(test)] extern crate test;

pub mod math;
pub mod search;
pub mod sort;
pub mod data_structures;