Closed
Description
What problem does this solve or what need does it fill?
The existence of a method named .iter()
that modifies state is confusing, as methods with that name are usually immutable.
This is the same motivation as #9624 -- this change probably should have been done at the same time as the EventReader::iter
rename.
What solution would you like?
Rename the function to .read()
, which more accurately communicates that the operation is stateful.
Activity