@@ -1166,7 +1166,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for Filter<I, P> where
1166
1166
}
1167
1167
1168
1168
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1169
- unsafe impl < I : InPlaceIterable , P > InPlaceIterable for Filter < I , P > where P : FnMut ( & I :: Item ) -> bool { }
1169
+ unsafe impl < I : InPlaceIterable , P > InPlaceIterable for Filter < I , P >
1170
+ where P : FnMut ( & I :: Item ) -> bool { }
1170
1171
1171
1172
/// An iterator that uses `f` to both filter and map elements from `iter`.
1172
1173
///
@@ -1308,7 +1309,8 @@ unsafe impl<S: Iterator, B, I: Iterator, F> SourceIter for FilterMap<I, F> where
1308
1309
}
1309
1310
1310
1311
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1311
- unsafe impl < B , I : InPlaceIterable , F > InPlaceIterable for FilterMap < I , F > where F : FnMut ( I :: Item ) -> Option < B > { }
1312
+ unsafe impl < B , I : InPlaceIterable , F > InPlaceIterable for FilterMap < I , F >
1313
+ where F : FnMut ( I :: Item ) -> Option < B > { }
1312
1314
1313
1315
1314
1316
/// An iterator that yields the current count and the element during iteration.
@@ -1957,7 +1959,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for SkipWhile<I, P> where
1957
1959
}
1958
1960
1959
1961
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1960
- unsafe impl < I : InPlaceIterable , F > InPlaceIterable for SkipWhile < I , F > where F : FnMut ( & I :: Item ) -> bool { }
1962
+ unsafe impl < I : InPlaceIterable , F > InPlaceIterable for SkipWhile < I , F >
1963
+ where F : FnMut ( & I :: Item ) -> bool { }
1961
1964
1962
1965
/// An iterator that only accepts elements while `predicate` returns `true`.
1963
1966
///
@@ -2164,7 +2167,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for TakeWhile<I, P> where
2164
2167
}
2165
2168
2166
2169
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
2167
- unsafe impl < I : InPlaceIterable , F > InPlaceIterable for TakeWhile < I , F > where F : FnMut ( & I :: Item ) -> bool { }
2170
+ unsafe impl < I : InPlaceIterable , F > InPlaceIterable for TakeWhile < I , F >
2171
+ where F : FnMut ( & I :: Item ) -> bool { }
2168
2172
2169
2173
2170
2174
/// An iterator that skips over `n` elements of `iter`.
0 commit comments