# Functions
IsArray is alias of IsArray().
IsBool will return true when type of the data is boolean.
IsChannel will return true when type of the data is channel.
IsDate will return true when type of the data is time.Time.
IsEmptyString will return true when type of the data is string and it's empty.
IsFloat will return true when type of the data is floating number.
IsFunction will return true when type of the data is closure/function.
IsInt will return true when type of the data is numeric integer.
IsMap will return true when type of the data is hash map.
IsNil will return true when type of the data is nil.
IsNumeric will return true when type of the data is numeric (float, uint, int).
IsPointer will return true when type of the data is pointer.
IsSlice is alias of IsSlice().
IsSliceOrArray will return true when type of the data is array/slice.
IsString will return true when type of the data is string.
IsStructObject will return true when type of the data is object from struct.
IsTrue will return true when type of the data is bool, and the value is true.
IsUint will return true when type of the data is uint.
IsZeroNumber will return true when type of the data is numeric and it's has 0 value.
IsZeroValue reports whether value is the zero value for its type.
# Variables
No description provided by the author