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

[]byte.str2() => bytestr()

This commit is contained in:
Alexander Medvednikov 2020-08-09 04:22:42 +02:00
parent 94f4dfe85b
commit 200f8dacb7

View File

@ -411,7 +411,7 @@ pub fn (b []byte) clone() []byte {
return res
}
pub fn (b []byte) str2() string {
pub fn (b []byte) bytestr() string {
return bytes2string(b)
}