unicycle icon indicating copy to clipboard operation
unicycle copied to clipboard

A futures abstraction that runs a set of futures which may complete in any order.

Results 4 unicycle issues
Sort by recently updated
recently updated
newest added

If so, the library could currently make use of an assumption that `&mut Vec` can be safely coerced to `&mut Vec`. This is desirable since it would let us use...

help wanted

Wakers from already-finished futures can be used to wake newer futures. The problem is that `PinSlab` doesn't prevent ABA. The full code (maybe not the minimal one): ```rust use std::future::{poll_fn,...

enhancement

Hello, thanks for the great crate. It would be nice to have a cheap way to remove futures/streams from the collection. `futures::stream::Abortable` can be used here, but it adds extra...

enhancement