pipe_chain/pipe/mod.rs
1//! Pipes combinators
2mod and;
3mod and_then;
4mod boxed;
5#[cfg(feature = "either")]
6mod either;
7mod error;
8mod map;
9mod not;
10mod opt;
11mod or;
12mod peek;
13mod repeat;
14mod skip;
15mod unpack;
16mod until;
17mod wrap;
18
19#[cfg(feature = "either")]
20pub use self::either::*;
21pub use self::{
22 and::*, and_then::*, boxed::*, error::*, map::*, not::*, opt::*, or::*, peek::*,
23 repeat::*, skip::*, unpack::*, until::*, wrap::*,
24};