Newer
Older
Manolama
committed
import (
"unsafe"
)
// See http://golang.org/ref/spec#Numeric_types
// SizeUint8 is the byte size of a uint8.
// SizeInt8 is the byte size of a int8.
SizeInt8 = 1
// SizeByte is the byte size of a byte.
// The `byte` type is aliased (by Go definition) to uint8.
// SizeBool is the byte size of a bool.
// The `bool` type is aliased (by flatbuffers convention) to uint8.
// The `SOffsetT` type is aliased (by flatbuffers convention) to int32.
SizeSOffsetT = 4
// The `UOffsetT` type is aliased (by flatbuffers convention) to uint32.
SizeUOffsetT = 4
// The `VOffsetT` type is aliased (by flatbuffers convention) to uint16.
SizeVOffsetT = 2