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:
@ -6,7 +6,7 @@ module builtin
|
||||
|
||||
import strings
|
||||
|
||||
struct map {
|
||||
pub struct map {
|
||||
element_size int
|
||||
root &mapnode
|
||||
pub:
|
||||
|
@ -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
|
||||
|
Reference in New Issue
Block a user