@@ -1760,7 +1760,7 @@ where
17601760/// [`map_while`]: trait.Iterator.html#method.map_while
17611761/// [`Iterator`]: trait.Iterator.html
17621762#[ 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 " ) ]
17641764#[ derive( Clone ) ]
17651765pub struct MapWhile < I , P > {
17661766 iter : I ,
@@ -1774,14 +1774,14 @@ impl<I, P> MapWhile<I, P> {
17741774 }
17751775}
17761776
1777- #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "none " ) ]
1777+ #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "68537 " ) ]
17781778impl < I : fmt:: Debug , P > fmt:: Debug for MapWhile < I , P > {
17791779 fn fmt ( & self , f : & mut fmt:: Formatter < ' _ > ) -> fmt:: Result {
17801780 f. debug_struct ( "MapWhile" ) . field ( "iter" , & self . iter ) . field ( "flag" , & self . finished ) . finish ( )
17811781 }
17821782}
17831783
1784- #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "none " ) ]
1784+ #[ unstable( feature = "iter_map_while" , reason = "recently added" , issue = "68537 " ) ]
17851785impl < B , I : Iterator , P > Iterator for MapWhile < I , P >
17861786where
17871787 P : FnMut ( I :: Item ) -> Option < B > ,
0 commit comments