convx

package
v0.0.0-...-00782a2 Latest Latest
Warning

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

Go to latest
Published: May 31, 2024 License: MIT, MIT Imports: 12 Imported by: 4

Documentation

Index

Constants

This section is empty.

Variables

View Source
var (
	ErrValueIsNULL        = errors.New("convx: unable to convert NULL value")
	ErrNegativeNotAllowed = errors.New("convx: unable to convert negative value")
)

Functions

func BytesToString

func BytesToString(b []byte) string

BytesToString converts byte slice to string without a memory allocation. For more details, see https://github.com/golang/go/issues/53003#issuecomment-1140276077.

func StringToBytes

func StringToBytes(s string) []byte

StringToBytes converts string to byte slice without a memory allocation. For more details, see https://github.com/golang/go/issues/53003#issuecomment-1140276077.

func StringToDate

func StringToDate(s string) (time.Time, error)

StringToDate attempts to parse a string into a time.Time type using a predefined list of formats. If no suitable format is found, an error is returned.

func StringToDateInDefaultLocation

func StringToDateInDefaultLocation(s string, location *time.Location) (time.Time, error)

StringToDateInDefaultLocation casts an empty interface to a time.Time, interpreting inputs without a timezone to be in the given location, or the local timezone if nil.

func ToBool

func ToBool(i interface{}) bool

ToBool casts an interface to a bool type.

func ToBoolE

func ToBoolE(i interface{}) (bool, error)

ToBoolE casts an interface to a bool type.

func ToBoolSlice

func ToBoolSlice(i interface{}) []bool

ToBoolSlice casts an interface to a []bool type.

func ToBoolSliceE

func ToBoolSliceE(i interface{}) ([]bool, error)

ToBoolSliceE casts an interface to a []bool type.

func ToDuration

func ToDuration(i interface{}) time.Duration

ToDuration casts an interface to a time.Duration type.

func ToDurationE

func ToDurationE(i interface{}) (d time.Duration, err error)

ToDurationE casts an interface to a time.Duration type.

func ToDurationSlice

func ToDurationSlice(i interface{}) []time.Duration

ToDurationSlice casts an interface to a []time.Duration type.

func ToDurationSliceE

func ToDurationSliceE(i interface{}) ([]time.Duration, error)

ToDurationSliceE casts an interface to a []time.Duration type.

func ToFloat

func ToFloat[N constraints.Float](i any) N

ToFloat converts an interface to a floating-point type.

func ToFloat32

func ToFloat32(i any) float32

ToFloat32 casts an interface to a float32 type.

func ToFloat32E

func ToFloat32E(i any) (float32, error)

ToFloat32E casts an interface to a float32 type.

func ToFloat64

func ToFloat64(i any) float64

ToFloat64 casts an interface to a float64 type.

func ToFloat64E

func ToFloat64E(i any) (float64, error)

ToFloat64E casts an interface to a float64 type.

func ToFloatE

func ToFloatE[N constraints.Float](i any) (N, error)

ToFloatE converts an interface to a floating-point type.

func ToInt

func ToInt(i any) int

ToInt converts an interface to an int type.

func ToInt16

func ToInt16(i any) int16

ToInt16 converts an interface to an int16 type.

func ToInt16E

func ToInt16E(i any) (int16, error)

ToInt16E converts an interface to an int16 type.

func ToInt32

func ToInt32(i any) int32

ToInt32 converts an interface to an int32 type.

func ToInt32E

func ToInt32E(i any) (int32, error)

ToInt32E converts an interface to an int32 type.

func ToInt32Slice

func ToInt32Slice(i interface{}) []int32

ToInt32Slice casts an interface to a []int32 type.

func ToInt32SliceE

func ToInt32SliceE(i interface{}) ([]int32, error)

ToInt32SliceE casts an interface to a []int32 type.

func ToInt64

func ToInt64(i any) int64

ToInt64 converts an interface to an int64 type.

func ToInt64E

func ToInt64E(i any) (int64, error)

ToInt64E converts an interface to an int64 type.

func ToInt64Slice

func ToInt64Slice(i interface{}) []int64

ToInt64Slice casts an interface to a []int64 type.

func ToInt64SliceE

func ToInt64SliceE(i interface{}) ([]int64, error)

ToInt64SliceE casts an interface to a []int64 type.

func ToInt8

func ToInt8(i any) int8

ToInt8 converts an interface to an int8 type.

func ToInt8E

func ToInt8E(i any) (int8, error)

ToInt8E converts an interface to an int8 type.

func ToIntE

func ToIntE(i any) (int, error)

ToIntE converts an interface to an int type.

func ToIntSlice

func ToIntSlice(i interface{}) []int

ToIntSlice casts an interface to a []int type.

func ToIntSliceE

func ToIntSliceE(i interface{}) ([]int, error)

ToIntSliceE casts an interface to a []int type.

func ToSigned

func ToSigned[N constraints.Signed](i any) N

ToSigned converts an interface to a signed integer type.

func ToSignedE

func ToSignedE[N constraints.Signed](i any) (N, error)

ToSignedE converts an interface to a signed integer type.

func ToSlice

func ToSlice(i interface{}) []interface{}

ToSlice casts an interface to a []interface{} type.

func ToSliceE

func ToSliceE(i interface{}) ([]interface{}, error)

ToSliceE casts an interface to a []interface{} type.

func ToString

func ToString(i interface{}) string

ToString casts an interface to a string type.

func ToStringE

func ToStringE(i interface{}) (string, error)

ToStringE casts an interface to a string type.

func ToStringMap

func ToStringMap(i interface{}) map[string]interface{}

ToStringMap casts an interface to a map[string]interface{} type.

func ToStringMapBool

func ToStringMapBool(i interface{}) map[string]bool

ToStringMapBool casts an interface to a map[string]bool type.

func ToStringMapBoolE

func ToStringMapBoolE(i interface{}) (map[string]bool, error)

ToStringMapBoolE casts an interface to a map[string]bool type.

func ToStringMapE

func ToStringMapE(i interface{}) (map[string]interface{}, error)

ToStringMapE casts an interface to a map[string]interface{} type.

func ToStringMapInt

func ToStringMapInt(i interface{}) map[string]int

ToStringMapInt casts an interface to a map[string]int type.

func ToStringMapInt64

func ToStringMapInt64(i interface{}) map[string]int64

ToStringMapInt64 casts an interface to a map[string]int64 type.

func ToStringMapInt64E

func ToStringMapInt64E(i interface{}) (map[string]int64, error)

ToStringMapInt64E casts an interface to a map[string]int64{} type.

func ToStringMapIntE

func ToStringMapIntE(i interface{}) (map[string]int, error)

ToStringMapIntE casts an interface to a map[string]int{} type.

func ToStringMapString

func ToStringMapString(i interface{}) map[string]string

ToStringMapString casts an interface to a map[string]string type.

func ToStringMapStringE

func ToStringMapStringE(i interface{}) (map[string]string, error)

ToStringMapStringE casts an interface to a map[string]string type.

func ToStringMapStringSlice

func ToStringMapStringSlice(i interface{}) map[string][]string

ToStringMapStringSlice casts an interface to a map[string][]string type.

func ToStringMapStringSliceE

func ToStringMapStringSliceE(i interface{}) (map[string][]string, error)

ToStringMapStringSliceE casts an interface to a map[string][]string type.

func ToStringSlice

func ToStringSlice(i interface{}) []string

ToStringSlice casts an interface to a []string type.

func ToStringSliceE

func ToStringSliceE(i interface{}) ([]string, error)

ToStringSliceE casts an interface to a []string type.

func ToTime

func ToTime(i interface{}) time.Time

ToTime casts an interface to a time.Time type.

func ToTimeE

func ToTimeE(i interface{}) (tim time.Time, err error)

ToTimeE casts an interface to a time.Time type.

func ToTimeInDefaultLocation

func ToTimeInDefaultLocation(i interface{}, location *time.Location) time.Time

func ToTimeInDefaultLocationE

func ToTimeInDefaultLocationE(i interface{}, location *time.Location) (tim time.Time, err error)

ToTimeInDefaultLocationE casts an empty interface to time.Time, interpreting inputs without a timezone to be in the given location, or the local timezone if nil.

func ToUint

func ToUint(i any) uint

ToUint converts an interface to a uint type.

func ToUint16

func ToUint16(i any) uint16

ToUint16 converts an interface to a uint16 type.

func ToUint16E

func ToUint16E(i any) (uint16, error)

ToUint16E converts an interface to a uint16 type.

func ToUint32

func ToUint32(i any) uint32

ToUint32 converts an interface to a uint32 type.

func ToUint32E

func ToUint32E(i any) (uint32, error)

ToUint32E converts an interface to a uint32 type.

func ToUint32Slice

func ToUint32Slice(i interface{}) []uint32

ToUint32Slice casts an interface to a []uint32 type.

func ToUint32SliceE

func ToUint32SliceE(i interface{}) ([]uint32, error)

ToUint32SliceE casts an interface to a []int32 type.

func ToUint64

func ToUint64(i any) uint64

ToUint64 converts an interface to a uint64 type.

func ToUint64E

func ToUint64E(i any) (uint64, error)

ToUint64E converts an interface to a uint64 type.

func ToUint64Slice

func ToUint64Slice(i interface{}) []uint64

ToUint64Slice casts an interface to a []uint64 type.

func ToUint64SliceE

func ToUint64SliceE(i interface{}) ([]uint64, error)

ToUint64SliceE casts an interface to a []uint64 type.

func ToUint8

func ToUint8(i any) uint8

ToUint8 converts an interface to a uint8 type.

func ToUint8E

func ToUint8E(i any) (uint8, error)

ToUint8E converts an interface to a uint type.

func ToUintE

func ToUintE(i any) (uint, error)

ToUintE converts an interface to a uint type.

func ToUintSlice

func ToUintSlice(i interface{}) []uint

ToUintSlice casts an interface to a []uint type.

func ToUintSliceE

func ToUintSliceE(i interface{}) ([]uint, error)

ToUintSliceE casts an interface to a []uint type.

func ToUnsigned

func ToUnsigned[N constraints.Unsigned](i any) N

ToUnsigned converts an interface to a unsigned integer type.

func ToUnsignedE

func ToUnsignedE[N constraints.Unsigned](i any) (N, error)

ToUnsignedE converts an interface to a unsigned integer type.

Types

This section is empty.

Jump to

Keyboard shortcuts

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