v/vlib/strings/strings.v

12 lines
152 B
V
Raw Normal View History

2019-09-14 22:48:30 +02:00
module strings
pub fn repeat(c byte, n int) string {
if n <= 0 {
return ''
}
2019-09-25 21:08:07 +02:00
mut arr := [c].repeat(n + 1)
arr[n] = `\0`
2019-12-19 22:29:37 +01:00
return string(arr,n)
}