Documentation
¶
Index ¶
- Variables
- func Parse(s string, p interface{}) error
- func ParseBool(s string, p *bool) error
- func ParseFloat32(s string, p *float32) error
- func ParseFloat64(s string, p *float64) error
- func ParseInt(s string, p *int) error
- func ParseInt16(s string, p *int16) error
- func ParseInt32(s string, p *int32) error
- func ParseInt64(s string, p *int64) error
- func ParseInt8(s string, p *int8) error
- func ParseTime(s string, p *time.Time) error
- func ParseUint(s string, p *uint) error
- func ParseUint16(s string, p *uint16) error
- func ParseUint32(s string, p *uint32) error
- func ParseUint64(s string, p *uint64) error
- func ParseUint8(s string, p *uint8) error
- type Converter
Constants ¶
This section is empty.
Variables ¶
View Source
var ( // ErrNotAPointer variable is not a pointer. ErrNotAPointer = errors.New("not a pointer") // ErrUnsupportedType variable is of unsupported type. ErrUnsupportedType = errors.New("unsupported type") )
Functions ¶
func ParseFloat32 ¶
ParseFloat32 parse string 32 bit float.
func ParseFloat64 ¶
ParseFloat64 parse string 64 bit float.
func ParseUint16 ¶
ParseUint16 parse string 16 bit unsigned integer.
func ParseUint32 ¶
ParseUint32 parse string 32 bit unsigned integer.
func ParseUint64 ¶
ParseUint64 parse string 64 bit unsigned integer.
func ParseUint8 ¶
ParseUint8 parse string 8 bit unsigned integer.
Types ¶
Click to show internal directories.
Click to hide internal directories.