Function futures_lite::stream::repeat

source ·
pub fn repeat<T: Clone>(item: T) -> Repeat<T>
Expand description

Creates an infinite stream that yields the same item repeatedly.

§Examples

use futures_lite::stream::{self, StreamExt};

let mut s = stream::repeat(7);

assert_eq!(s.next().await, Some(7));
assert_eq!(s.next().await, Some(7));