mirror of
https://github.com/dolthub/dolt.git
synced 2026-05-04 11:30:14 -05:00
29 lines
305 B
Go
29 lines
305 B
Go
package types
|
|
|
|
// +gen noms
|
|
type Bool bool
|
|
|
|
// +gen noms
|
|
type Int16 int16
|
|
|
|
// +gen noms
|
|
type Int32 int32
|
|
|
|
// +gen noms
|
|
type Int64 int64
|
|
|
|
// +gen noms
|
|
type UInt16 uint16
|
|
|
|
// +gen noms
|
|
type UInt32 uint32
|
|
|
|
// +gen noms
|
|
type UInt64 uint64
|
|
|
|
// +gen noms
|
|
type Float32 float32
|
|
|
|
// +gen noms
|
|
type Float64 float64
|