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

make all necessary structs public

This commit is contained in:
Alexander Medvednikov
2019-10-24 12:47:21 +03:00
parent dce3275df4
commit 4a88a28a3b
9 changed files with 34 additions and 26 deletions

View File

@ -6,7 +6,7 @@ module builtin
import strings
struct map {
pub struct map {
element_size int
root &mapnode
pub:

View File

@ -43,7 +43,7 @@ NB: A V string should be/is immutable from the point of view of
import strconv
struct string {
pub struct string {
//mut:
//hash_cache int
pub:
@ -51,7 +51,7 @@ pub:
len int // the length of the .str field, excluding the ending 0 byte. It is always equal to strlen(.str).
}
struct ustring {
pub struct ustring {
pub:
s string
runes []int