mirror of
https://github.com/dolthub/dolt.git
synced 2026-01-30 10:45:18 -06:00
32 lines
404 B
Go
32 lines
404 B
Go
package types
|
|
|
|
// The methods for these types are generated by a tool.
|
|
// See http://clipperhouse.github.io/gen.
|
|
|
|
// +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
|