mirror of
https://github.com/tinygo-org/tinygo.git
synced 2026-08-14 07:53:40 +00:00
reflect: add support for Type.Bits()
This commit is contained in:
committed by
Ron Evans
parent
f43d01bdc7
commit
b8cd8b6f25
Vendored
+12
-12
@@ -222,15 +222,15 @@ reflect type: struct
|
||||
struct
|
||||
|
||||
sizes:
|
||||
int8 1
|
||||
int16 2
|
||||
int32 4
|
||||
int64 8
|
||||
uint8 1
|
||||
uint16 2
|
||||
uint32 4
|
||||
uint64 8
|
||||
float32 4
|
||||
float64 8
|
||||
complex64 8
|
||||
complex128 16
|
||||
int8 1 8
|
||||
int16 2 16
|
||||
int32 4 32
|
||||
int64 8 64
|
||||
uint8 1 8
|
||||
uint16 2 16
|
||||
uint32 4 32
|
||||
uint64 8 64
|
||||
float32 4 32
|
||||
float64 8 64
|
||||
complex64 8 64
|
||||
complex128 16 128
|
||||
|
||||
Reference in New Issue
Block a user