@@ -130,7 +130,7 @@ fn restrict_valuation(valuation: BddValuation, retain: &[BddVariable]) -> BddPar
130
130
partial
131
131
}
132
132
133
- impl < ' a > Iterator for RawSymbolicIterator < ' a > {
133
+ impl Iterator for RawSymbolicIterator < ' _ > {
134
134
type Item = BddPartialValuation ;
135
135
136
136
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -188,7 +188,7 @@ impl StateProjection {
188
188
}
189
189
}
190
190
191
- impl < ' a > Iterator for StateProjectionIterator < ' a > {
191
+ impl Iterator for StateProjectionIterator < ' _ > {
192
192
type Item = Vec < ( VariableId , bool ) > ;
193
193
194
194
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -247,7 +247,7 @@ impl<'a> FnUpdateProjection<'a> {
247
247
}
248
248
}
249
249
250
- impl < ' a , ' b > Iterator for FnUpdateProjectionIterator < ' a , ' b > {
250
+ impl Iterator for FnUpdateProjectionIterator < ' _ , ' _ > {
251
251
type Item = Vec < ( VariableId , FnUpdate ) > ;
252
252
253
253
fn next ( & mut self ) -> Option < Self :: Item > {
@@ -313,7 +313,7 @@ impl<'a> MixedProjection<'a> {
313
313
}
314
314
}
315
315
316
- impl < ' a , ' b > Iterator for MixedProjectionIterator < ' a , ' b > {
316
+ impl Iterator for MixedProjectionIterator < ' _ , ' _ > {
317
317
type Item = ( Vec < ( VariableId , bool ) > , Vec < ( VariableId , FnUpdate ) > ) ;
318
318
319
319
fn next ( & mut self ) -> Option < Self :: Item > {
0 commit comments