pub trait Repeat<const N: usize, T> {
    fn repeat_n(&self, n: usize) -> Flex<N, T>;
}
Expand description

Trait that can repeat a given FlexStr “n” times efficiently

Required methods

Repeats a given FlexStr “n” times efficiently and returns a new FlexStr

Implementations on Foreign Types

Implementors