We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
fn foo() -> impl Iterator<Item=i32> + ExactSizeIterator { 0..10 }
can be simplified down to just
fn foo() -> impl ExactSizeIterator<Item=i32> { 0..10 }