Function repeatn
pub fn repeatn<T>(element: T, n: usize) -> RepeatN<T>
👎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.