1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
#![feature(alloc)]
#![feature(heap_api)]
#![feature(iter_arith)]
#![feature(non_ascii_idents)]
#![feature(unique)]

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

#![no_std]

#![cfg_attr(test, plugin(quickcheck_macros))]

extern crate alloc;
extern crate rel;
extern crate typenum;

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

macro_rules! tryOpt {
    ($x: expr) => (match $x { None => { return None }, Some(x) => x })
}

pub mod collections;

mod util;