An iterator that wraps another iterator and applies a function to every element before yielding it.
struct Map<T, F, I>
where I: Iterator,
F: FnMut(<I as Iterator>::Item) -> T,
{
/* private fields */
}| Name | Description |
|---|---|
| Iterator | Objects that can be iterated over. |