selectme 0.7.2

A fast and fair select! macro for asynchronous Rust.
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
pub(crate) fn main() {
}

/// Regular `select!` does not support that `static` option.
async fn error_default_static() {
    selectme::select! { 
        static;
    };
}

/// Static can only be specified once.
async fn error_multiple_static() {
    selectme::inline! { 
        static;
        static;
    };
}