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

40 lines
771 B
Go
Raw Normal View History

2019-06-23 05:21:30 +03:00
// Copyright (c) 2019 Alexander Medvednikov. All rights reserved.
// Use of this source code is governed by an MIT license
// that can be found in the LICENSE file.
2019-06-22 21:20:28 +03:00
module builtin
struct StringBuilder {
buf []byte
len int
}
pub fn new_string_builder(initial_size int) StringBuilder {
2019-06-22 21:20:28 +03:00
return StringBuilder {
buf: new_array(0, initial_size, sizeof(byte))
}
}
pub fn (b mut StringBuilder) write(s string) {
2019-06-22 21:20:28 +03:00
b.buf._push_many(s.str, s.len)
b.len += s.len
}
pub fn (b mut StringBuilder) writeln(s string) {
2019-06-22 21:20:28 +03:00
b.buf._push_many(s.str, s.len)
b.buf << `\n`
b.len += s.len + 1
}
pub fn (b StringBuilder) str() string {
2019-06-22 21:20:28 +03:00
return tos(b.buf.data, b.len)
}
pub fn (b StringBuilder) cut(n int) {
2019-06-22 21:20:28 +03:00
b.len -= n
}
pub fn (b mut StringBuilder) free() {
2019-06-24 23:34:21 +03:00
C.free(b.buf.data)
}