join_me_maybe 0.6.0

an async `join!` macro with `select!`-like features
Documentation
1
2
3
4
5
6
7
8
use join_me_maybe::join;

#[tokio::main]
async fn main() {
    join!(
        async {} => (),
    );
}