repeat
Repeats this byte_array n times.
Examples:
x'1234abcd'.repeat(3)returnsx'1234abcd1234abcd1234abcd'x''.repeat(3)returnsx''x'1234abcd'.repeat(0)returnsx''
Since
0.11.0
Parameters
n
the number of times to repeat this byte_array
Throws
exception
when:
nis negativenis greater than(2^31)-1the resulting byte array has size greater than
(2^31)-1