cast

package
v0.5.2 Latest Latest
Warning

This package is not in the latest version of its module.

Go to latest
Published: Jan 5, 2024 License: MIT Imports: 3 Imported by: 6

Documentation

Index

Constants

This section is empty.

Variables

This section is empty.

Functions

func CastFloatInterfaceToFloat

func CastFloatInterfaceToFloat[To FloatNumber](i interface{}) (To, bool)

func CastInterfaceListToFloatList

func CastInterfaceListToFloatList[To FloatNumber](list []interface{}) ([]To, bool)

func CastInterfaceListToIntList

func CastInterfaceListToIntList[To SignedInt | UnsignedInt](list []interface{}) ([]To, bool)

func CastInterfaceToFloatList

func CastInterfaceToFloatList[To FloatNumber](i interface{}) ([]To, bool)

func CastInterfaceToIntList

func CastInterfaceToIntList[To SignedInt | UnsignedInt](i interface{}) ([]To, bool)

func CastInterfaceToStringMap

func CastInterfaceToStringMap[To any, From any](m interface{}) (map[string]To, bool)

func CastList

func CastList[To any, From any](list []From) ([]To, bool)

CastList casts a list of From objects to To, by casting it to an interface{} in between.

func CastList2

func CastList2[To any, From any](list interface{}) ([]To, bool)

CastList2 attempts even harder to cast a list of From object to To, by checking if we might be dealing with a list masquerading as a interface{}, then a []interface{}, before checking for []To.

func CastListToFloatList2 added in v0.2.56

func CastListToFloatList2[To FloatNumber](list interface{}) ([]To, bool)

func CastListToIntList2 added in v0.2.56

func CastListToIntList2[To SignedInt | UnsignedInt](list interface{}) ([]To, bool)

func CastListToInterfaceList added in v0.4.10

func CastListToInterfaceList(value interface{}) ([]interface{}, error)

CastListToInterfaceList attempts to convert the given value to a list of interface{}.

The function checks if the provided value is a slice or an array. If so, it returns a slice of interface{}, where each item in the original slice or array is converted to its interface{} representation.

func CastMapMember

func CastMapMember[To any](m map[string]interface{}, k string) (*To, bool)

func CastMapToInterfaceMap

func CastMapToInterfaceMap[From any](m map[string]From) map[string]interface{}

func CastNumberInterfaceToFloat

func CastNumberInterfaceToFloat[To FloatNumber](i interface{}) (To, bool)

func CastNumberInterfaceToInt added in v0.2.56

func CastNumberInterfaceToInt[To SignedInt | UnsignedInt](i interface{}) (To, bool)

func CastStringMap

func CastStringMap[To any, From any](m map[string]From) (map[string]To, bool)

func CastStringMap2 added in v0.2.53

func CastStringMap2[To any, From any](m interface{}) (map[string]To, bool)

func CastToNumberList

func CastToNumberList[To Number, From Number](list []From) ([]To, bool)

CastToNumberList casts a list of From objects to To. This is useful for transform between different int types, for example.

func ConvertMapToInterfaceMap added in v0.4.36

func ConvertMapToInterfaceMap(input interface{}) (map[string]interface{}, error)

func GetAndCast added in v0.4.18

func GetAndCast[T any](ps map[string]interface{}, name string, default_ T) (T, bool, error)

func GetAndCastPtr added in v0.4.18

func GetAndCastPtr[T any](ps map[string]interface{}, name string, default_ *T) (*T, bool, error)

func InterfaceAddr added in v0.4.36

func InterfaceAddr[T any](t T) *interface{}

Types

type FloatNumber

type FloatNumber interface {
	float32 | float64
}

type Number

type Number interface {
	int | int8 | int16 | int32 | int64 | uint | uint8 | uint16 | uint32 | uint64 | uintptr | float32 | float64
}

type SignedInt

type SignedInt interface {
	int | int8 | int16 | int32 | int64
}

type UnsignedInt

type UnsignedInt interface {
	uint | uint8 | uint16 | uint32 | uint64 | uintptr
}

Jump to

Keyboard shortcuts

? : This menu
/ : Search site
f or F : Jump to
y or Y : Canonical URL