Skip to content

v0.2.3

Compare
Choose a tag to compare
@shockerli shockerli released this 03 Sep 05:27
· 24 commits to master since this release

Features

  • support *P functions return the pointer of converted value #6
BoolP(v interface{}, def ...bool) *bool
StringP(v interface{}, def ...string) *string
Float32P(v interface{}, def ...float32) *float32
Float64P(v interface{}, def ...float64) *float64
Uint64P(v interface{}, def ...uint64) *uint64
Uint32P(v interface{}, def ...uint32) *uint32
Uint16P(v interface{}, def ...uint16) *uint16
Uint8P(v interface{}, def ...uint8) *uint8
UintP(v interface{}, def ...uint) *uint
Int64P(v interface{}, def ...int64) *int64
Int32P(v interface{}, def ...int32) *int32
Int16P(v interface{}, def ...int16) *int16
Int8P(v interface{}, def ...int8) *int8
IntP(v interface{}, def ...int) *int