Closed
Description
Looks like #562 broke the tests; the double ended from_iter
function was removed, and now tests on master are broken. https://github.com/async-rs/async-std/runs/347468653
cc/ @felipesere would you mind taking a look? Ideally stream::FromIter
would implement:
impl <T: DoubleEndedStream> DoubleEndedStream for FromIter<T>;
so that things just work.