builtin: a temporary []byte.str2() (until runes are implemented)

pull/6084/head
Alexander Medvednikov 2020-08-09 04:20:35 +02:00
parent f6a85d5305
commit 94f4dfe85b
1 changed files with 15 additions and 3 deletions

View File

@ -411,6 +411,18 @@ pub fn (b []byte) clone() []byte {
return res
}
pub fn (b []byte) str2() string {
return bytes2string(b)
}
// TODO copy pasted from builder.v
fn bytes2string(b []byte) string {
mut copy := b.clone()
copy << `\0`
res := tos(copy.data, copy.len-1)
return res
}
// TODO generic
pub fn (a []byte) contains(val byte) bool {