Documentation
¶
Overview ¶
Package datatype provides the DataType type and related methods.
Index ¶
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type DataType ¶
type DataType int
DataType represents the type of a value.
const ( // DataTypeNull represents a null type. DataTypeNull DataType = iota // DataTypeNumber represents a number type. DataTypeNumber // DataTypeString represents a string type. DataTypeString // DataTypeBool represents a boolean type. DataTypeBool // DataTypeFunction represents a function type. DataTypeFunction // DataTypeTuple represents a tuple type. DataTypeTuple // DataTypeArray represents an array type. DataTypeArray // DataTypeError represents an error type. DataTypeError // DataTypeAny represents any type. DataTypeAny )
Click to show internal directories.
Click to hide internal directories.