resiter/
prelude.rs

1//
2// This Source Code Form is subject to the terms of the Mozilla Public
3// License, v. 2.0. If a copy of the MPL was not distributed with this
4// file, You can obtain one at http://mozilla.org/MPL/2.0/.
5//
6
7//! Prelude
8//!
9//! Imports all things publicly, so you can `use resiter::prelude::*;` in your crate.
10//!
11
12pub use and_then::*;
13pub use errors::*;
14pub use filter::*;
15pub use filter_map::*;
16pub use flat_map::*;
17pub use flatten::*;
18pub use map::*;
19pub use ok_or_else::*;
20pub use oks::*;
21pub use onerr::*;
22pub use onok::*;
23pub use try_filter::*;
24pub use try_filter_map::*;
25pub use try_map::*;
26pub use unwrap::*;
27pub use while_ok::*;