@@ -1107,7 +1107,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for Filter<I, P> where
11071107}
11081108
11091109#[ 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 { }
11111112
11121113/// An iterator that uses `f` to both filter and map elements from `iter`.
11131114///
@@ -1249,7 +1250,8 @@ unsafe impl<S: Iterator, B, I: Iterator, F> SourceIter for FilterMap<I, F> where
12491250}
12501251
12511252#[ 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 > { }
12531255
12541256
12551257/// 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
18241826}
18251827
18261828#[ 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 { }
18281831
18291832/// An iterator that only accepts elements while `predicate` returns `true`.
18301833///
@@ -2030,7 +2033,8 @@ unsafe impl<S: Iterator, P, I: Iterator> SourceIter for TakeWhile<I, P> where
20302033}
20312034
20322035#[ 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 { }
20342038
20352039
20362040/// An iterator that skips over `n` elements of `iter`.
0 commit comments