v/vlib/strings/strings.js.v

19 lines
312 B
V
Raw Normal View History

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 {
2021-08-31 16:10:19 +02:00
return ''
2020-12-21 21:00:32 +01:00
/*
// TODO: uncomment this. It is commented for now, so that `v doc strings` works
res := # s.repeat(n)
return res
2020-12-21 21:00:32 +01:00
*/
}