mirror of
https://github.com/rust-lang/rust.git
synced 2025-02-22 20:03:37 +00:00
fix formatting of std::iter::Map
This commit is contained in:
parent
37d067f5d7
commit
1dac9a1d78
@ -60,6 +60,7 @@ pub struct Map<I, F> {
|
|||||||
iter: I,
|
iter: I,
|
||||||
f: F,
|
f: F,
|
||||||
}
|
}
|
||||||
|
|
||||||
impl<I, F> Map<I, F> {
|
impl<I, F> Map<I, F> {
|
||||||
pub(in crate::iter) fn new(iter: I, f: F) -> Map<I, F> {
|
pub(in crate::iter) fn new(iter: I, f: F) -> Map<I, F> {
|
||||||
Map { iter, f }
|
Map { iter, f }
|
||||||
|
Loading…
Reference in New Issue
Block a user