# Functions
Equals implements v1-equals-v2 for Variant types.
GetType returns the type of the given variant.
Greater implements greater-than for Variant types.
GreaterOrEquals implements greater-or-equal for Variant types.
IsBool checks if given variable is a boolean.
IsDate checks if given variable is a date.
IsDecimal checks if given variable is a time.
IsEmpty checks if given variable is empty.
IsFloat checks if given variable is a float.
IsInt checks if given variable is an integer.
IsString checks if given variable is a string.
Less implements v1-less-v2 for Variant types.
LessOrEquals implements less-or-equal for Variant types.
NewBoolList creates a new BoolList.
NewDateList creates a new DateList.
NewDecimalList creates a new DecimalList.
NewFloat64List creates a new Float64List.
NewIntList creates a new IntList.
NewStringList creates a new StringList.
NewVariantList creates a new VariantList.
NotEquals implements not-equal for Variant types.
ParseNumber parses a number to int, float or decimal.
RBool creates a boolean variant type.
RDate creates a date variant type.
RDecimal creates a decimal variant type.
RFloat creates a floating point variant type.
RInt creates an integer variant type.
RListArrayToJSON creates a JSON from an RList array.
RString creates a string variant type.
ToBool converts a variant to bool.
ToDate converts a variant to VBDate.
ToDecimal converts a variant to Decimal.
ToFloat64 converts a variant to float64.
ToInt converts a variant to int.
ToInterface returns the underlying string/int/bool/date/decimal value.
ToJSON converts the value to a JSON string.
ToString converts a variant to string.
ToStringWithDateFormat converts a variant to string with a date format.
ToVariant converts interface{} to Variant.
Val parses the value to a number.
# Constants
Constants for the different variant types.
Constants for the different variant types.
Constants for the different variant types.
Constants for the different variant types.
Constants for the different variant types.
Constants for the different variant types.
Constants for the different variant types.
# Type aliases
BoolList is a slice of bools.
DateList is a slice of VBDate.
DecimalList is a slice of Decimal values.
Float64List is a slice of float64s.
IntList is a slice of ints.
StringList is a slice of strings.
Type defines a type for the different variant implementations.
VariantList is a slice of Variantsgoland:noinspection GoNameStartsWithPackageName.
No description provided by the author