orx_iterable/sources/
repeat.rsuse crate::Iterable;
pub struct Repeat<T>
where
T: Clone,
{
pub(crate) value: T,
}
impl<T> Iterable for Repeat<T>
where
T: Clone,
{
type Item = T;
type Iter = core::iter::Repeat<T>;
fn iter(&self) -> Self::Iter {
core::iter::repeat(self.value.clone())
}
}
impl<T> Iterable for core::iter::Repeat<T>
where
T: Clone,
{
type Item = T;
type Iter = core::iter::Repeat<T>;
fn iter(&self) -> Self::Iter {
self.clone()
}
}
pub fn repeat<T>(value: T) -> Repeat<T>
where
T: Clone,
{
Repeat { value }
}