builtin: make string.add() public temporarily till -autofree improves
parent
419ee8ae2a
commit
d098a3caca
vlib/builtin
|
@ -500,7 +500,7 @@ fn (s string) ge(a string) bool {
|
||||||
|
|
||||||
// TODO `fn (s string) + (a string)` ? To be consistent with operator overloading syntax.
|
// TODO `fn (s string) + (a string)` ? To be consistent with operator overloading syntax.
|
||||||
// add concatenates string with the string given in `s`.
|
// add concatenates string with the string given in `s`.
|
||||||
fn (s string) add(a string) string {
|
pub fn (s string) add(a string) string {
|
||||||
new_len := a.len + s.len
|
new_len := a.len + s.len
|
||||||
mut res := string{
|
mut res := string{
|
||||||
str: unsafe { malloc(new_len + 1) }
|
str: unsafe { malloc(new_len + 1) }
|
||||||
|
|
Loading…
Reference in New Issue