This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
// https://play.rust-lang.org/?version=stable&mode=debug&edition=2018&gist=2ee2730c58035b41d18b7b07d64b9342 | |
//! A generic implementation for an iterator generating function implemented on | |
//! `IntoIterator`. `.iter_map()` takes a callback as its parameter. This | |
//! callback gets invoked on each `.next()` invocation and receives a mutable | |
//! ref to an internal iterator. | |
//! | |
//! ```no_run | |
//! use iter_map::*; |