# Functions
BoolToInt converts a boolean value to an integer.
IsNil returns true if the input value is nil.
IsZero returns true if the input value is equal to the zero instance (e.g.
Pointer returns the address of v.
Value returns the value of the provided pointer or the type default (zero value) if nil.
Zero returns the zero instance (e.g.
# Interfaces
Float is a constraint for float types.
Int is a constraint for signed integer types.
Number is a constraint for all integer and float numbers.
Ordered is a constraint that permits any ordered type: any type that supports the operators < <= >= >.
UInt is a constraint for unsigned integer types.