Documentation
¶
Index ¶
- Variables
- func NewCounterValue(val int64) core.Value
- func NewCustomNumberValue(val int64) core.Value
- func NewStringArrayIteratorValue(arr *StringArray) core.Value
- func NewStringArrayValue(vals []string) core.Value
- func NewStringCircleValue(vals []string) core.Value
- func NewStringDictValue(vals map[string]string) core.Value
- type Counter
- type CustomNumber
- type StringArray
- type StringArrayIterator
- type StringCircle
- type StringDict
Constants ¶
This section is empty.
Variables ¶
View Source
var ( VT_COUNTER = core.VT_USER_DEFINED + 1 VT_CUSTOM_NUMBER = core.VT_USER_DEFINED + 2 VT_STRING_ARRAY = core.VT_USER_DEFINED + 3 VT_STRING_CIRCLE = core.VT_USER_DEFINED + 4 VT_STRING_DICT = core.VT_USER_DEFINED + 5 VT_STRING_ARRAY_ITERATOR = core.VT_USER_DEFINED + 6 )
Functions ¶
func NewCounterValue ¶
func NewCustomNumberValue ¶
func NewStringArrayIteratorValue ¶
func NewStringArrayIteratorValue(arr *StringArray) core.Value
func NewStringArrayValue ¶
func NewStringCircleValue ¶
Types ¶
type CustomNumber ¶
type CustomNumber struct {
// contains filtered or unexported fields
}
type StringArray ¶
type StringArray struct {
Value []string
}
type StringArrayIterator ¶
type StringArrayIterator struct {
// contains filtered or unexported fields
}
type StringCircle ¶
type StringCircle struct {
Value []string
}
type StringDict ¶
Click to show internal directories.
Click to hide internal directories.