pub fn combine<T>( streams: Vec<Rc<dyn Stream<T>>>, ) -> Rc<dyn Stream<TinyVec<[T; 1]>>>where T: Element + 'static,
Collects a Vec of Streams into a Stream of Vec.