Repeat a single value n times and collect into a Series.
Value to repeat.
Number of repeats
Optional name of the Series
> const s = pl.repeat("a", 5)> s.toArray()["a", "a", "a", "a", "a"] Copy
> const s = pl.repeat("a", 5)> s.toArray()["a", "a", "a", "a", "a"]
Repeat a single value n times and collect into a Series.