Re-exportsΒ§
pub use self::chain::chain;pub use self::cloned::Cloned;pub use self::copied::Copied;pub use self::flatten::Flatten;pub use self::map_while::MapWhile;pub use self::step_by::StepBy;pub use self::zip::zip;pub use self::chain::Chain;pub use self::cycle::Cycle;pub use self::enumerate::Enumerate;pub use self::filter::Filter;pub use self::filter_map::FilterMap;pub use self::flatten::FlatMap;pub use self::fuse::Fuse;pub use self::inspect::Inspect;pub use self::map::Map;pub use self::peekable::Peekable;pub use self::rev::Rev;pub use self::scan::Scan;pub use self::skip::Skip;pub use self::skip_while::SkipWhile;pub use self::take::Take;pub use self::take_while::TakeWhile;pub use self::zip::Zip;pub use self::array_chunks::ArrayChunks;Experimental pub use self::by_ref_sized::ByRefSized;Experimental pub use self::intersperse::Intersperse;Experimental pub use self::intersperse::IntersperseWith;Experimental pub use self::map_windows::MapWindows;Experimental pub use self::zip::TrustedRandomAccess;Experimental pub use self::zip::TrustedRandomAccessNoCoerce;Experimental
ModulesΒ§
- array_
chunks π - by_
ref_ πsized - chain π
- cloned π
- copied π
- cycle π
- enumerate π
- filter π
- filter_
map π - flatten π
- fuse π
- inspect π
- intersperse π
- map π
- map_
while π - map_
windows π - peekable π
- rev π
- scan π
- skip π
- skip_
while π - step_by π
- take π
- take_
while π - zip π
StructsΒ§
- Generic
Shunt π - An iterator adapter that produces output as long as the underlying
iterator produces values where
Try::branchsays toControlFlow::Continue.
TraitsΒ§
- Source
Iter π»Experimental - This trait provides transitive access to source-stage in an iterator-adapter pipeline under the conditions that
FunctionsΒ§
- try_
process π - Process the given iterator as if it yielded the itemβs
Try::Outputtype instead. AnyTry::Residuals encountered will stop the inner iterator and be propagated back to the overall result.