Command gencodec generates marshaling methods for Go struct types.
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
gencodec/vendor/github.com/garslo/gogen/builtins.go

25 lines
271 B

package gogen
var BuiltinTypes = [...]string{
"int",
"int8",
"int16",
"int32",
"int64",
"uint",
"uint8",
"uint16",
"uint32",
"uint64",
"uintptr",
"float",
"float32",
"float64",
"string",
"bool",
"byte",
"complex128",
"complex64",
"error",
"rune",
}