async-fn-stream 0.2.0

Lightweight implementation of `async-stream` without macros
Documentation
use async_fn_stream::fn_stream;
use futures::{pin_mut, Stream, StreamExt};

fn build_stream() -> impl Stream<Item = i32> {
    fn_stream(|emitter| async move {
        for i in 0..3 {
            // yield elements from stream via `collector`
            emitter.emit(i).await;
        }
    })
}

async fn example() {
    let stream = build_stream();

    pin_mut!(stream);
    let mut numbers = Vec::new();
    while let Some(number) = stream.next().await {
        print!("{} ", number);
        numbers.push(number);
    }
    println!();
    assert_eq!(numbers, vec![0, 1, 2]);
}

pub fn main() {
    futures::executor::block_on(example());
}