Ibraheem Ahmed
Ibraheem Ahmed
Is there a fork with the fixed fonts for someone who doesn't want to patch manually?
actix lua has been archived. This should be closed
Would it be better to modify `FuturesUnordered` or add a new `FutureMap` type? The latter would probably be much easier.
There is `extend_reserve` on nightly.
tokio has `ReaderStream` which uses `BytesMut`: ```rust const CAPACITY: usize = 4096; pin_project! { pub struct ReaderStream { #[pin] reader: Option, buf: BytesMut, } } impl ReaderStream { pub fn...
Should it be re-exported as `ArcWake` to avoid breakage?
Note that https://github.com/rust-lang/futures-rs/pull/2429 is not released yet so we could easily add `concurrent(_unordered)` without breaking changes.
If anyone decides to implement this, `concurrently` seems like a good name.
I think that this is a high priority issue, primarily because `collect` does not take the size-hint into account, meaning that it allocates for each item in the stream, which...
Hm.. so the problem with adding a second generic parameter means that you can't implement it for `Result` because you have to introduce a second stream parameter for `V: FromStream`,...