repeatn

Function repeatn 

pub fn repeatn<T>(element: T, n: usize) -> RepeatN<T>
where T: Clone + Send,
👎Deprecated: use repeat_n
Available on crate feature trie only.
Expand description

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.