1#![doc = include_str!("lib.md")]
23mod try_iterator;
45pub mod prelude {
6//! This prelude is intended to be a glob import to all your modules that
7 //! make use the library:
8 //!
9 //! ```rust,no_run
10 //! use try_iterator::prelude::*;
11 //! ```
1213pub use super::try_iterator::*;
14}