Aggregates
Function | Description | Meta |
---|---|---|
count |
Count takes a collection or string and returns the number of elements (or characters) in it. Arguments: Returns:collection (any<string, array[any], object[any: any], set[any]>)the set/array/object/string to be counted n (number)the count of elements, key/val pairs, or characters, respectively. | Wasm |
max |
Returns the maximum value in a collection. Arguments: Returns:collection (any<array[any], set[any]>)the set or array to be searched n (any)the maximum of all elements | Wasm |
min |
Returns the minimum value in a collection. Arguments: Returns:collection (any<array[any], set[any]>)the set or array to be searched n (any)the minimum of all elements | Wasm |
product |
Multiplies elements of an array or set of numbers Arguments: Returns:collection (any<array[number], set[number]>)the set or array of numbers to multiply n (number)the product of all elements | Wasm |
sort |
Returns a sorted array. Arguments: Returns:collection (any<array[any], set[any]>)the array or set to be sorted n (array[any])the sorted array | Wasm |
sum |
Sums elements of an array or set of numbers. Arguments: Returns:collection (any<array[number], set[number]>)the set or array of numbers to sum n (number)the sum of all elements | Wasm |