We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
select!
1 parent d13c5c5 commit c30adf5Copy full SHA for c30adf5
futures-util/src/async_await/select_mod.rs
@@ -7,7 +7,8 @@ use proc_macro_hack::proc_macro_hack;
7
macro_rules! document_select_macro {
8
($item:item) => {
9
/// Polls multiple futures and streams simultaneously, executing the branch
10
- /// for the future that finishes first. Futures passed to
+ /// for the future that finishes first. If multiple futures are ready,
11
+ /// one will be pseudo-randomly selected at runtime. Futures passed to
12
/// `select!` must be `Unpin` and implement `FusedFuture`.
13
/// Futures and streams which are not already fused can be fused using the
14
/// `.fuse()` method. Note, though, that fusing a future or stream directly
0 commit comments