mirror of https://github.com/KaiserY/trpl-zh-cn
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
18 lines
419 B
18 lines
419 B
extern crate trpl; // required for mdbook test
|
|
|
|
// ANCHOR: all
|
|
use trpl::StreamExt;
|
|
|
|
fn main() {
|
|
trpl::run(async {
|
|
let values = [1, 2, 3, 4, 5, 6, 7, 8, 9, 10];
|
|
let iter = values.iter().map(|n| n * 2);
|
|
let mut stream = trpl::stream_from_iter(iter);
|
|
|
|
while let Some(value) = stream.next().await {
|
|
println!("The value was: {value}");
|
|
}
|
|
});
|
|
}
|
|
// ANCHOR_END: all
|