vlib: use new filename format

This commit is contained in:
lutherwenxu 2020-04-12 01:51:32 +08:00 committed by GitHub
parent e64db44bb5
commit dc4db87be3
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23
45 changed files with 0 additions and 26 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
*/
}