Documentation
¶
Index ¶
Constants ¶
This section is empty.
Variables ¶
View Source
var Converters = map[string]func(text string) (interface{}, error){ "string": func(text string) (interface{}, error) { return text, nil }, "number": func(text string) (interface{}, error) { return strconv.ParseFloat(text, 64) }, "bool": func(text string) (interface{}, error) { return strconv.ParseBool(text) }, "timestamp": func(text string) (interface{}, error) { return strconv.ParseInt(text, 10, 64) }, "int": func(text string) (interface{}, error) { return strconv.ParseInt(text, 10, 64) }, "float": func(text string) (interface{}, error) { return strconv.ParseFloat(text, 64) }, }
Converters .
Functions ¶
Types ¶
This section is empty.
Click to show internal directories.
Click to hide internal directories.