@@ -96,12 +96,10 @@ LL | let (l, r) = "a.b.c".split_once('.').unwrap();
9696help: remove the `iter` usages
9797 |
9898LL - let l = iter.next().unwrap();
99- LL +
10099 |
101100help: remove the `iter` usages
102101 |
103102LL - let r = iter.next().unwrap();
104- LL +
105103 |
106104
107105error: manual implementation of `split_once`
@@ -121,12 +119,10 @@ LL | let (l, r) = "a.b.c".split_once('.')?;
121119help: remove the `iter` usages
122120 |
123121LL - let l = iter.next()?;
124- LL +
125122 |
126123help: remove the `iter` usages
127124 |
128125LL - let r = iter.next()?;
129- LL +
130126 |
131127
132128error: manual implementation of `rsplit_once`
@@ -146,12 +142,10 @@ LL | let (l, r) = "a.b.c".rsplit_once('.').unwrap();
146142help: remove the `iter` usages
147143 |
148144LL - let r = iter.next().unwrap();
149- LL +
150145 |
151146help: remove the `iter` usages
152147 |
153148LL - let l = iter.next().unwrap();
154- LL +
155149 |
156150
157151error: manual implementation of `rsplit_once`
@@ -171,12 +165,10 @@ LL | let (l, r) = "a.b.c".rsplit_once('.')?;
171165help: remove the `iter` usages
172166 |
173167LL - let r = iter.next()?;
174- LL +
175168 |
176169help: remove the `iter` usages
177170 |
178171LL - let l = iter.next()?;
179- LL +
180172 |
181173
182174error: manual implementation of `split_once`
@@ -202,12 +194,10 @@ LL | let (a, b) = "a.b.c".split_once('.').unwrap();
202194help: remove the `iter` usages
203195 |
204196LL - let a = iter.next().unwrap();
205- LL +
206197 |
207198help: remove the `iter` usages
208199 |
209200LL - let b = iter.next().unwrap();
210- LL +
211201 |
212202
213203error: aborting due to 19 previous errors
0 commit comments