Closed
Description
Also from toml-rs
:
while let Some((_, ch)) = self.chars.clone().next() {
This should not be changed to:
for (_, ch) in self.chars.clone() {
Because they are semantically different.
Also from toml-rs
:
while let Some((_, ch)) = self.chars.clone().next() {
This should not be changed to:
for (_, ch) in self.chars.clone() {
Because they are semantically different.