pub trait RepeatExt<I, O, E> {
// Provided method
fn repeat<R>(self, r: R) -> RepeatPipe<Self, O>
where R: TryInto<Repetition>,
R::Error: Error,
Self: Pipe<I, O, E> + Sized { ... }
}Expand description
Combinator that makes repetitions
Provided Methods§
Sourcefn repeat<R>(self, r: R) -> RepeatPipe<Self, O>
fn repeat<R>(self, r: R) -> RepeatPipe<Self, O>
Repeats this pipe.
The repetition can be a fixed number or a range