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

V 0.0.12 open-source release

This commit is contained in:
Alexander Medvednikov
2019-06-22 20:20:28 +02:00
commit d32e538073
43 changed files with 12573 additions and 0 deletions

32
builtin/string_builder.v Normal file
View File

@ -0,0 +1,32 @@
module builtin
struct StringBuilder {
buf []byte
len int
}
fn new_string_builder(initial_size int) StringBuilder {
return StringBuilder {
buf: new_array(0, initial_size, sizeof(byte))
}
}
fn (b mut StringBuilder) write(s string) {
b.buf._push_many(s.str, s.len)
b.len += s.len
}
fn (b mut StringBuilder) writeln(s string) {
b.buf._push_many(s.str, s.len)
b.buf << `\n`
b.len += s.len + 1
}
fn (b StringBuilder) str() string {
return tos(b.buf.data, b.len)
}
fn (b StringBuilder) cut(n int) {
b.len -= n
}