# Functions
Bool will convert the given value to a bool, returns the default value of false if a conversion can not be made.
Duration will convert the given value to a time.Duration, returns the default value of 0ns if a conversion can not be made.
Float32 will convert the given value to a float32, returns the default value of 0.0 if a conversion can not be made.
Float64 will convert the given value to a float64, returns the default value of 0.0 if a conversion can not be made.
Infer will perform conversion by inferring the conversion operation from the base type of a pointer to a supported T.
Int will convert the given value to a int, returns the default value of 0 if a conversion can not be made.
Int16 will convert the given value to a int16, returns the default value of 0 if a conversion can not be made.
Int32 will convert the given value to a int32, returns the default value of 0 if a conversion can not be made.
Int64 will convert the given value to a int64, returns the default value of 0 if a conversion can not be made.
Int8 will convert the given value to a int8, returns the default value of 0 if a conversion can not be made.
String will convert the given value to a string, returns the default value of "" if a conversion can not be made.
Time will convert the given value to a time.Time, returns the empty struct time.Time{} if a conversion can not be made.
Uint will convert the given value to a uint, returns the default value of 0 if a conversion can not be made.
Uint16 will convert the given value to a uint16, returns the default value of 0 if a conversion can not be made.
Uint32 will convert the given value to a uint32, returns the default value of 0 if a conversion can not be made.
Uint64 will convert the given value to a uint64, returns the default value of 0 if a conversion can not be made.
Uint8 will convert the given value to a uint8, returns the default value of 0 if a conversion can not be made.