# Functions
AbsFloat returns the absolute float64 value of float64 num.
AbsFloat64 returns the absolute float64 value of float64 num.
AbsInt returns the absolute int value of int num.
AbsInt64 returns the absolute int64 value of int64 num.
Average returns the float64 average of nums.
AverageFloat returns the float64 average of float64 nums.
AverageFloat64 returns the float64 average of float64 nums.
AverageInt returns the float64 average of int nums.
AverageInt64 returns the float64 average of int64 nums.
Compare compares f1 and f2 and returns: -1 if f1 < f2 0 if | f1 - f2 | <= 10 ^ -places, default places is 9 +1 if f1 > f2.
Equal reports whether f1 and f2 are equal.
GreaterThan (GT) returns true when f1 is greater than f2.
GreaterThanOrEqual (GTE) returns true when f1 is greater than or equal to f2.
IsEven reports whether num is even number.
IsNegative returns: true if d < 0 false if d == 0 false if d > 0.
IsNonNegative returns: true if d > 0 true if d == 0 false if d < 0.
IsNonPositive returns: true if d < 0 true if d == 0 false if d > 0.
IsOdd reports whether num is odd number.
IsPositive returns: true if d > 0 false if d == 0 false if d < 0.
IsZero returns: true if d == 0 false if d > 0 false if d < 0.
LessThan (LT) returns true when f1 is less than f2.
LessThanOrEqual (LTE) returns true when f1 is less than or equal to f2.
Max returns the largest float64 number in nums.
MaxFloat returns the largest float64 number in float64 nums.
MaxFloat64 returns the largest float64 number in float64 nums.
MaxInt returns the largest int number in int nums.
MaxInt64 returns the largest int64 number in int64 nums.
Min returns the smallest float64 number in nums.
MinFloat returns the smallest float64 number in float64 nums.
MinFloat64 returns the smallest float64 number in float64 nums.
MinInt returns the smallest int number in int nums.
MinInt64 returns the smallest int64 number in int64 nums.
NumberFormat returns the formatted num with grouped thousands.
Percent returns the float64 percentage of num in total.
RandFloat returns float64 pseudo-random number in [min, max).
RandFloat64 returns float64 pseudo-random number in [min, max).
RandInt returns int pseudo-random number in [min, max).
RandInt64 returns int64 pseudo-random number in [min, max).
RangeFloat returns a float64 slice, starting from float64 start, and increments by float64 step, and stops before float64 stop.
RangeFloat64 returns a float64 slice, starting from float64 start, and increments by float64 step, and stops before float64 stop.
RangeInt returns a int slice, starting from int start, and increments by int step, and stops before int stop.
RangeInt64 returns a int64 slice, starting from int64 start, and increments by int64 step, and stops before int64 stop.
Round rounds the f to places.
RoundBank banker rounds the f to places.
RoundBankToString returns a banker rounded fixed-point string with places digits after the f point.
RoundToString returns a rounded fixed-point string with places digits after the f point.
Sign returns: -1 if f < 0 0 if f == 0 +1 if f > 0.
SizeFormat returns the formatted size with storage unit.
Sum returns the float64 sum of nums.
SumFloat returns the float64 sum of float64 nums.
SumFloat64 returns the float64 sum of float64 nums.
SumInt returns the int sum of int nums.
SumInt64 returns the int64 sum of int64 nums.