Documentation
¶
Index ¶
- func ParseBool(value reflect.Value, s string) error
- func ParseComplex(value reflect.Value, s string) error
- func ParseFloat(value reflect.Value, s string) error
- func ParseInt(value reflect.Value, s string) error
- func ParseString(value reflect.Value, s string) error
- func ParseUint(value reflect.Value, s string) error
- type ParseFunc
- type ParserManager
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
Types ¶
type ParserManager ¶
type ParserManager interface {
// Parser - Get the parser for the given type
Parser(t reflect.Type) (ParseFunc, bool)
// SetParser - define a parser for a type
SetParser(t reflect.Type, f ParseFunc)
}
func NewParserManager ¶
func NewParserManager() ParserManager
Click to show internal directories.
Click to hide internal directories.