@@ -1107,7 +1107,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for Filter<I, P> where
1107
1107
}
1108
1108
1109
1109
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1110
- unsafe impl < I : InPlaceIterable , P > InPlaceIterable for Filter < I , P > where P : FnMut ( & I :: Item ) -> bool { }
1110
+ unsafe impl < I : InPlaceIterable , P > InPlaceIterable for Filter < I , P >
1111
+ where P : FnMut ( & I :: Item ) -> bool { }
1111
1112
1112
1113
/// An iterator that uses `f` to both filter and map elements from `iter`.
1113
1114
///
@@ -1249,7 +1250,8 @@ unsafe impl<S: Iterator, B, I: Iterator, F> SourceIter for FilterMap<I, F> where
1249
1250
}
1250
1251
1251
1252
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1252
- unsafe impl < B , I : InPlaceIterable , F > InPlaceIterable for FilterMap < I , F > where F : FnMut ( I :: Item ) -> Option < B > { }
1253
+ unsafe impl < B , I : InPlaceIterable , F > InPlaceIterable for FilterMap < I , F >
1254
+ where F : FnMut ( I :: Item ) -> Option < B > { }
1253
1255
1254
1256
1255
1257
/// An iterator that yields the current count and the element during iteration.
@@ -1824,7 +1826,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for SkipWhile<I, P> where
1824
1826
}
1825
1827
1826
1828
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
1827
- unsafe impl < I : InPlaceIterable , F > InPlaceIterable for SkipWhile < I , F > where F : FnMut ( & I :: Item ) -> bool { }
1829
+ unsafe impl < I : InPlaceIterable , F > InPlaceIterable for SkipWhile < I , F >
1830
+ where F : FnMut ( & I :: Item ) -> bool { }
1828
1831
1829
1832
/// An iterator that only accepts elements while `predicate` returns `true`.
1830
1833
///
@@ -2030,7 +2033,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for TakeWhile<I, P> where
2030
2033
}
2031
2034
2032
2035
#[ unstable( issue = "0" , feature = "inplace_iteration" ) ]
2033
- unsafe impl < I : InPlaceIterable , F > InPlaceIterable for TakeWhile < I , F > where F : FnMut ( & I :: Item ) -> bool { }
2036
+ unsafe impl < I : InPlaceIterable , F > InPlaceIterable for TakeWhile < I , F >
2037
+ where F : FnMut ( & I :: Item ) -> bool { }
2034
2038
2035
2039
2036
2040
/// An iterator that skips over `n` elements of `iter`.
0 commit comments