@@ -1760,7 +1760,7 @@ where
1760
1760
/// [`map_while`]: trait.Iterator.html#method.map_while
1761
1761
/// [`Iterator`]: trait.Iterator.html
1762
1762
#[ must_use = "iterators are lazy and do nothing unless consumed" ]
1763
- #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "none " ) ]
1763
+ #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "68537 " ) ]
1764
1764
#[ derive( Clone ) ]
1765
1765
pub struct MapWhile < I , P > {
1766
1766
iter : I ,
@@ -1774,14 +1774,14 @@ impl<I, P> MapWhile<I, P> {
1774
1774
}
1775
1775
}
1776
1776
1777
- #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "none " ) ]
1777
+ #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "68537 " ) ]
1778
1778
impl < I : fmt:: Debug , P > fmt:: Debug for MapWhile < I , P > {
1779
1779
fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
1780
1780
f. debug_struct ( "MapWhile" ) . field ( "iter" , & self . iter ) . field ( "flag" , & self . finished ) . finish ( )
1781
1781
}
1782
1782
}
1783
1783
1784
- #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "none " ) ]
1784
+ #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "68537 " ) ]
1785
1785
impl < B , I : Iterator , P > Iterator for MapWhile < I , P >
1786
1786
where
1787
1787
P : FnMut ( I :: Item ) -> Option < B > ,
0 commit comments