pub fn repeat<T, E>(item: T) -> Repeat<T, E>where
T: Clone,
Expand description
Create a stream which produces the same item repeatedly.
Stream never produces an error or EOF. Note that you likely want to avoid
usage of collect
or such on the returned stream as it will exhaust
available memory as it tries to just fill up all RAM.
use futures::prelude::*;
use futures::stream;
use futures_executor::block_on;
let mut stream = stream::repeat::<_, bool>(10);
assert_eq!(Ok(vec![10, 10, 10]), block_on(stream.take(3).collect()));