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
//! Definition of combinators

mod and_then;
mod from_err;
mod inspect;
mod map;
mod map_err;
mod ok;
mod or;
mod or_else;
mod product;
mod skip;
mod then;
mod with;

pub use self::and_then::{and_then, AndThen};
pub use self::from_err::{from_err, FromErr};
pub use self::inspect::{inspect, Inspect};
pub use self::map::{map, Map};
pub use self::map_err::{map_err, MapErr};
pub use self::ok::{ok, EndpointOk};
pub use self::or::{or, Or};
pub use self::or_else::{or_else, OrElse};
pub use self::skip::{skip, Skip};
pub use self::then::{then, Then};
pub use self::with::{with, With};