SYMBOL INDEX (93 symbols across 6 files) FILE: generic.go function To (line 7) | func To[T any](t T) *T { function ToOrNil (line 14) | func ToOrNil[T comparable](t T) *T { function Get (line 30) | func Get[T any](t *T) T { FILE: generic_test.go function TestGeneric (line 11) | func TestGeneric(t *testing.T) { FILE: pointer.go function ToBool (line 17) | func ToBool(b bool) *bool { function ToByte (line 22) | func ToByte(b byte) *byte { function ToComplex64 (line 27) | func ToComplex64(c complex64) *complex64 { function ToComplex128 (line 32) | func ToComplex128(c complex128) *complex128 { function ToError (line 37) | func ToError(e error) *error { function ToFloat32 (line 42) | func ToFloat32(f float32) *float32 { function ToFloat64 (line 47) | func ToFloat64(f float64) *float64 { function ToInt (line 52) | func ToInt(i int) *int { function ToInt8 (line 57) | func ToInt8(i int8) *int8 { function ToInt16 (line 62) | func ToInt16(i int16) *int16 { function ToInt32 (line 67) | func ToInt32(i int32) *int32 { function ToInt64 (line 72) | func ToInt64(i int64) *int64 { function ToRune (line 77) | func ToRune(r rune) *rune { function ToString (line 82) | func ToString(s string) *string { function ToUint (line 87) | func ToUint(u uint) *uint { function ToUint8 (line 92) | func ToUint8(u uint8) *uint8 { function ToUint16 (line 97) | func ToUint16(u uint16) *uint16 { function ToUint32 (line 102) | func ToUint32(u uint32) *uint32 { function ToUint64 (line 107) | func ToUint64(u uint64) *uint64 { function ToUintptr (line 112) | func ToUintptr(u uintptr) *uintptr { function ToDuration (line 117) | func ToDuration(d time.Duration) *time.Duration { function ToTime (line 122) | func ToTime(t time.Time) *time.Time { FILE: pointer_or_nil.go function ToBoolOrNil (line 16) | func ToBoolOrNil(b bool) *bool { function ToByteOrNil (line 24) | func ToByteOrNil(b byte) *byte { function ToComplex64OrNil (line 32) | func ToComplex64OrNil(c complex64) *complex64 { function ToComplex128OrNil (line 40) | func ToComplex128OrNil(c complex128) *complex128 { function ToErrorOrNil (line 48) | func ToErrorOrNil(e error) *error { function ToFloat32OrNil (line 56) | func ToFloat32OrNil(f float32) *float32 { function ToFloat64OrNil (line 64) | func ToFloat64OrNil(f float64) *float64 { function ToIntOrNil (line 72) | func ToIntOrNil(i int) *int { function ToInt8OrNil (line 80) | func ToInt8OrNil(i int8) *int8 { function ToInt16OrNil (line 88) | func ToInt16OrNil(i int16) *int16 { function ToInt32OrNil (line 96) | func ToInt32OrNil(i int32) *int32 { function ToInt64OrNil (line 104) | func ToInt64OrNil(i int64) *int64 { function ToRuneOrNil (line 112) | func ToRuneOrNil(r rune) *rune { function ToStringOrNil (line 120) | func ToStringOrNil(s string) *string { function ToUintOrNil (line 128) | func ToUintOrNil(u uint) *uint { function ToUint8OrNil (line 136) | func ToUint8OrNil(u uint8) *uint8 { function ToUint16OrNil (line 144) | func ToUint16OrNil(u uint16) *uint16 { function ToUint32OrNil (line 152) | func ToUint32OrNil(u uint32) *uint32 { function ToUint64OrNil (line 160) | func ToUint64OrNil(u uint64) *uint64 { function ToUintptrOrNil (line 168) | func ToUintptrOrNil(u uintptr) *uintptr { function ToDurationOrNil (line 176) | func ToDurationOrNil(d time.Duration) *time.Duration { function ToTimeOrNil (line 184) | func ToTimeOrNil(t time.Time) *time.Time { FILE: pointer_test.go function TestBool (line 19) | func TestBool(t *testing.T) { function TestByte (line 43) | func TestByte(t *testing.T) { function TestComplex64 (line 67) | func TestComplex64(t *testing.T) { function TestComplex128 (line 91) | func TestComplex128(t *testing.T) { function TestError (line 115) | func TestError(t *testing.T) { function TestFloat32 (line 139) | func TestFloat32(t *testing.T) { function TestFloat64 (line 163) | func TestFloat64(t *testing.T) { function TestInt (line 187) | func TestInt(t *testing.T) { function TestInt8 (line 211) | func TestInt8(t *testing.T) { function TestInt16 (line 235) | func TestInt16(t *testing.T) { function TestInt32 (line 259) | func TestInt32(t *testing.T) { function TestInt64 (line 283) | func TestInt64(t *testing.T) { function TestRune (line 307) | func TestRune(t *testing.T) { function TestString (line 331) | func TestString(t *testing.T) { function TestUint (line 355) | func TestUint(t *testing.T) { function TestUint8 (line 379) | func TestUint8(t *testing.T) { function TestUint16 (line 403) | func TestUint16(t *testing.T) { function TestUint32 (line 427) | func TestUint32(t *testing.T) { function TestUint64 (line 451) | func TestUint64(t *testing.T) { function TestUintptr (line 475) | func TestUintptr(t *testing.T) { function TestDuration (line 499) | func TestDuration(t *testing.T) { function TestTime (line 523) | func TestTime(t *testing.T) { function Example (line 547) | func Example() { FILE: value.go function GetBool (line 16) | func GetBool(b *bool) bool { function GetByte (line 24) | func GetByte(b *byte) byte { function GetComplex64 (line 32) | func GetComplex64(c *complex64) complex64 { function GetComplex128 (line 40) | func GetComplex128(c *complex128) complex128 { function GetError (line 48) | func GetError(e *error) error { function GetFloat32 (line 56) | func GetFloat32(f *float32) float32 { function GetFloat64 (line 64) | func GetFloat64(f *float64) float64 { function GetInt (line 72) | func GetInt(i *int) int { function GetInt8 (line 80) | func GetInt8(i *int8) int8 { function GetInt16 (line 88) | func GetInt16(i *int16) int16 { function GetInt32 (line 96) | func GetInt32(i *int32) int32 { function GetInt64 (line 104) | func GetInt64(i *int64) int64 { function GetRune (line 112) | func GetRune(r *rune) rune { function GetString (line 120) | func GetString(s *string) string { function GetUint (line 128) | func GetUint(u *uint) uint { function GetUint8 (line 136) | func GetUint8(u *uint8) uint8 { function GetUint16 (line 144) | func GetUint16(u *uint16) uint16 { function GetUint32 (line 152) | func GetUint32(u *uint32) uint32 { function GetUint64 (line 160) | func GetUint64(u *uint64) uint64 { function GetUintptr (line 168) | func GetUintptr(u *uintptr) uintptr { function GetDuration (line 176) | func GetDuration(d *time.Duration) time.Duration { function GetTime (line 184) | func GetTime(t *time.Time) time.Time {