Function async_std::stream::repeat

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

Creates a stream that yields the same item repeatedly.

§Examples

use async_std::prelude::*;
use async_std::stream;

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

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