1
0
mirror of https://github.com/vlang/v.git synced 2023-08-10 21:13:21 +03:00

strings: optimization of repeat + repeat_string()

This commit is contained in:
Delyan Angelov
2020-02-26 14:22:12 +02:00
committed by GitHub
parent 39429f7ac9
commit 7a72167eb7
4 changed files with 59 additions and 11 deletions

18
vlib/strings/strings_js.v Normal file
View File

@ -0,0 +1,18 @@
module strings
pub fn repeat(c byte, n int) string {
if n <= 0 {
return ''
}
mut arr := [c].repeat(n + 1)
arr[n] = `\0`
return string(arr,n)
}
pub fn repeat_string(s string, n int) string {
/*
// TODO: uncomment this. It is commented for now, so that `v doc strings` works
res := # s.repeat(n)
return res
*/
}