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

all: introduce isize and usize (#11437)

This commit is contained in:
Enzo
2021-09-08 04:53:39 +02:00
committed by GitHub
parent 577fedfce1
commit cc8ee5fb84
13 changed files with 213 additions and 130 deletions

View File

@@ -419,6 +419,8 @@ rune // represents a Unicode code point
f32 f64
isize, usize // platform-dependent, the size is how many bytes it takes to reference any location in memory
voidptr, size_t // these are mostly used for C interoperability
any // similar to C's void* and Go's interface{}