Versions in this module Expand all Collapse all v1 v1.1.0 Dec 15, 2022 Changes in this version + func Pointer(val T) *T + func Value(ptr *T) (T, bool) v1.0.0 Oct 27, 2019 Changes in this version + func Bool(v bool) *bool + func BoolVal(ptr *bool) (val bool, ok bool) + func Byte(v byte) *byte + func ByteVal(ptr *byte) (val byte, ok bool) + func Complex128(v complex128) *complex128 + func Complex128Val(ptr *complex128) (val complex128, ok bool) + func Complex64(v complex64) *complex64 + func Complex64Val(ptr *complex64) (val complex64, ok bool) + func Duration(v time.Duration) *time.Duration + func DurationVal(ptr *time.Duration) (val time.Duration, ok bool) + func Float32(v float32) *float32 + func Float32Val(ptr *float32) (val float32, ok bool) + func Float64(v float64) *float64 + func Float64Val(ptr *float64) (val float64, ok bool) + func Int(v int) *int + func Int16(v int16) *int16 + func Int16Val(ptr *int16) (val int16, ok bool) + func Int32(v int32) *int32 + func Int32Val(ptr *int32) (val int32, ok bool) + func Int64(v int64) *int64 + func Int64Val(ptr *int64) (val int64, ok bool) + func Int8(v int8) *int8 + func Int8Val(ptr *int8) (val int8, ok bool) + func IntVal(ptr *int) (val int, ok bool) + func Interface(v interface{}) *interface + func InterfaceVal(ptr *interface{}) (val interface{}, ok bool) + func Rune(v rune) *rune + func RuneVal(ptr *rune) (val rune, ok bool) + func String(v string) *string + func StringVal(ptr *string) (val string, ok bool) + func Time(v time.Time) *time.Time + func TimeVal(ptr *time.Time) (val time.Time, ok bool) + func Uint(v uint) *uint + func Uint16(v uint16) *uint16 + func Uint16Val(ptr *uint16) (val uint16, ok bool) + func Uint32(v uint32) *uint32 + func Uint32Val(ptr *uint32) (val uint32, ok bool) + func Uint64(v uint64) *uint64 + func Uint64Val(ptr *uint64) (val uint64, ok bool) + func Uint8(v uint8) *uint8 + func Uint8Val(ptr *uint8) (val uint8, ok bool) + func UintVal(ptr *uint) (val uint, ok bool) + func Uintptr(v uintptr) *uintptr + func UintptrVal(ptr *uintptr) (val uintptr, ok bool) + func Unpoint(v interface{}) interface