Documentation
¶
Index ¶
Constants ¶
View Source
const ( // PrimitiveErrorType used for error handling PrimitiveErrorType interfaces.PrimitiveType = "error" PrimitiveVoidType interfaces.PrimitiveType = "void" PrimitiveIntType interfaces.PrimitiveType = "int" PrimitiveStringType interfaces.PrimitiveType = "str" PrimitiveDoubleType interfaces.PrimitiveType = "double" )
Variables ¶
View Source
var ( VoidType = PrimitiveTypeStruct{/* contains filtered or unexported fields */} IntType = PrimitiveTypeStruct{/* contains filtered or unexported fields */} StringType = PrimitiveTypeStruct{/* contains filtered or unexported fields */} DoubleType = PrimitiveTypeStruct{/* contains filtered or unexported fields */} ErrorType = PrimitiveTypeStruct{/* contains filtered or unexported fields */} )
Functions ¶
This section is empty.
Types ¶
type ListTypeStruct ¶
type ListTypeStruct struct {
interfaces.ValueType
Parent interfaces.ValueType
}
func (ListTypeStruct) Primitive ¶
func (l ListTypeStruct) Primitive() interfaces.ValueType
func (ListTypeStruct) ToString ¶
func (l ListTypeStruct) ToString() string
type PrimitiveTypeStruct ¶
type PrimitiveTypeStruct struct {
interfaces.ValueType
// contains filtered or unexported fields
}
func (PrimitiveTypeStruct) Primitive ¶
func (p PrimitiveTypeStruct) Primitive() interfaces.ValueType
func (PrimitiveTypeStruct) ToString ¶
func (p PrimitiveTypeStruct) ToString() string
type StructTypeStruct ¶
type StructTypeStruct struct {
interfaces.ValueType
Name string
}
func (StructTypeStruct) Primitive ¶
func (s StructTypeStruct) Primitive() interfaces.ValueType
func (StructTypeStruct) ToString ¶
func (s StructTypeStruct) ToString() string
Click to show internal directories.
Click to hide internal directories.