File tree Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Expand file tree Collapse file tree 2 files changed +4
-4
lines changed Original file line number Diff line number Diff line change @@ -420,14 +420,14 @@ pub use self::adapters::{Intersperse, IntersperseWith};
420420 issue = "42168"
421421) ]
422422pub use self :: range:: Step ;
423+ #[ stable( feature = "iter_empty" , since = "1.2.0" ) ]
424+ pub use self :: sources:: { Empty , empty} ;
423425#[ unstable(
424426 feature = "iter_from_coroutine" ,
425427 issue = "43122" ,
426428 reason = "coroutines are unstable"
427429) ]
428- pub use self :: sources:: from_coroutine;
429- #[ stable( feature = "iter_empty" , since = "1.2.0" ) ]
430- pub use self :: sources:: { Empty , empty} ;
430+ pub use self :: sources:: { FromCoroutine , from_coroutine} ;
431431#[ stable( feature = "iter_from_fn" , since = "1.34.0" ) ]
432432pub use self :: sources:: { FromFn , from_fn} ;
433433#[ stable( feature = "iter_once" , since = "1.2.0" ) ]
Original file line number Diff line number Diff line change @@ -15,7 +15,7 @@ pub use self::empty::{Empty, empty};
1515 issue = "43122" ,
1616 reason = "coroutines are unstable"
1717) ]
18- pub use self :: from_coroutine:: from_coroutine;
18+ pub use self :: from_coroutine:: { FromCoroutine , from_coroutine} ;
1919#[ stable( feature = "iter_from_fn" , since = "1.34.0" ) ]
2020pub use self :: from_fn:: { FromFn , from_fn} ;
2121#[ stable( feature = "iter_once" , since = "1.2.0" ) ]
You can’t perform that action at this time.
0 commit comments