1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
#![feature(field_init_shorthand, ordering_chaining)]

#![cfg_attr(test, feature(plugin))]
#![cfg_attr(test, plugin(clippy))]

#[cfg(test)]
#[macro_use]
extern crate quickcheck;

mod pair;
mod triple;

pub use pair::*;
pub use triple::*;