uniqExact
uniqExact
Introduced in: v1.1
Calculates the exact number of different argument values.
Note
The uniqExact function uses more memory than uniq, because the size of the state has unbounded growth as the number of different values increases.
Use the uniqExact function if you absolutely need an exact result.
Otherwise use the uniq function.
Syntax
Arguments
x— The function takes a variable number of parameters.Tuple(T)orArray(T)orDateorDateTimeorStringor(U)Int*orFloat*orDecimal
Returned value
Returns the exact number of different argument values as a UInt64. UInt64
Examples
Basic usage
Multiple arguments
See Also