mirror of
https://github.com/vlang/v.git
synced 2023-08-10 21:13:21 +03:00
17 lines
240 B
V
17 lines
240 B
V
module strings
|
|
|
|
pub fn repeat(c byte, n int) string {
|
|
if n <= 0 {
|
|
return ''
|
|
}
|
|
arr := [c].repeat(n)
|
|
return arr.bytestr()
|
|
}
|
|
|
|
pub fn repeat_string(s string, n int) string {
|
|
res := ''
|
|
#res.str = s.str.repeat(n.valueOf())
|
|
|
|
return res
|
|
}
|