-
Notifications
You must be signed in to change notification settings - Fork 12.7k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Auto merge of #96298 - petrochenkov:fromgen, r=estebank
libcore: Add `iter::from_generator` which is like `iter::from_fn`, but for coroutines instead of functions An equally useful little helper. I didn't follow any of the async-wg work, so I don't know why something like this wasn't added before.
- Loading branch information
Showing
9 changed files
with
67 additions
and
34 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,43 @@ | ||
use crate::ops::{Generator, GeneratorState}; | ||
use crate::pin::Pin; | ||
|
||
/// Creates a new iterator where each iteration calls the provided generator. | ||
/// | ||
/// Similar to [`iter::from_fn`]. | ||
/// | ||
/// [`iter::from_fn`]: crate::iter::from_fn | ||
/// | ||
/// # Examples | ||
/// | ||
/// ``` | ||
/// #![feature(generators)] | ||
/// #![feature(iter_from_generator)] | ||
/// | ||
/// let it = std::iter::from_generator(|| { | ||
/// yield 1; | ||
/// yield 2; | ||
/// yield 3; | ||
/// }); | ||
/// let v: Vec<_> = it.collect(); | ||
/// assert_eq!(v, [1, 2, 3]); | ||
/// ``` | ||
#[inline] | ||
#[unstable(feature = "iter_from_generator", issue = "43122", reason = "generators are unstable")] | ||
pub fn from_generator<G: Generator<Return = ()> + Unpin>( | ||
generator: G, | ||
) -> impl Iterator<Item = G::Yield> { | ||
FromGenerator(generator) | ||
} | ||
|
||
struct FromGenerator<G>(G); | ||
|
||
impl<G: Generator<Return = ()> + Unpin> Iterator for FromGenerator<G> { | ||
type Item = G::Yield; | ||
|
||
fn next(&mut self) -> Option<Self::Item> { | ||
match Pin::new(&mut self.0).resume(()) { | ||
GeneratorState::Yielded(n) => Some(n), | ||
GeneratorState::Complete(()) => None, | ||
} | ||
} | ||
} |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters