Function repeatn

Deprecated: use `repeat_n`
pub fn repeatn<T: Clone + Send>(element: T, n: usize) -> RepeatN<T>

Creates a parallel iterator that produces n repeats of element (by cloning it).

Deprecated in favor of repeat_n for consistency with the standard library.