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
27
28
29
30
31
32
33
34
35

#![allow(unused_must_use)]
#![allow(unused_macros)]
#![allow(dead_code)]
#![allow(unused_imports)]
#![feature(extended_key_value_attributes)]

#![doc = include_str!("../README.md")]


mod consumer;
mod feed;
mod many;
mod maybe;
mod not;
mod must;

#[macro_use]
mod peek;

#[macro_use]
mod only;

#[macro_use]
mod plan;


pub use consumer::Consumer;
pub use feed::Result;
pub use feed::Feed;
pub use many::Many;
pub use maybe::Maybe;
pub use not::Not;
pub use must::Must;
pub use peek::Peek;