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

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

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

pub mod pair;
pub mod triple;
pub mod vec;

pub use pair::StringPair;
pub use triple::StringTriple;
pub use vec::StringVec;