repeat#
2026-03-11
19 min read time
Applies to Linux
- pylibhipdf.strings.repeat.repeat_strings(signatures, args, kwargs, defaults, _fused_sigindex={})#
Repeat each string in the given strings column by the numbers of times given in another numeric column.
For details, see
cudf::strings::repeat().Parameters#
- inputColumn
The column containing strings to repeat.
- repeat_timesColumn or int
Number(s) of times that the corresponding input strings for each row are repeated.
- streamStream | None
CUDA stream on which to perform the operation.
Returns#
- Column
New column containing the repeated strings.