konst_kernel 0.3.15

Foundational const functionality shared between konst and const_panic
Documentation
use crate::into_iter::{ConstIntoIter, IsIteratorKind};

pub const fn repeat<T: Copy>(val: T) -> Repeat<T> {
    Repeat(val)
}

pub struct Repeat<T>(T);

impl<T> ConstIntoIter for Repeat<T> {
    type Kind = IsIteratorKind;
    type IntoIter = Self;
    type Item = T;
}

impl<T: Copy> Repeat<T> {
    /// Gets the next element in the iterator
    pub const fn next(self) -> Option<(T, Self)> {
        Some((self.0, self))
    }
    /// Gets the next element in the iterator
    pub const fn next_back(self) -> Option<(T, Self)> {
        Some((self.0, self))
    }
    /// Reverses the iterator
    pub const fn rev(self) -> Self {
        self
    }
    /// Clones the iterator
    pub const fn copy(&self) -> Self {
        Self(self.0)
    }
}