Remove the element at the specified index from the array.
Parameters
Return a new array containing only the elements of the original array for which the predicate is true.
Parameters
Remove one level of nesting from the array.
Return the position of the first occurrence of the value in the array.
Parameters
Insert the value at the specified index in the array.
Concatenate the elements of the array using the provided separator.
Parameters
Return the length of the array.
Apply the function to each element of the array.
Note: also supports more complex callables like functools.partial and lambdas with closures
Parameters
Return the maximum value of the array
Return the minimum value of the array
Return a new array with all occurrences of the value removed. Note that in the python standard library, this method only removes the first occurrence.
Parameters
Return the array repeated n
times.
Parameters
Return a new array with the elements sorted.
Return a new array with the elements of both arrays, with duplicates removed.
Parameters
Return a new array with the duplicate elements removed.
Unnest the array into a new table.
Note: Rows with empty arrays are dropped in the output.
Return a new array with the elements of the original array and the other arrays zipped together.
The combined map will have f1, f2, f3, etc. as the keys.
Remove the element at the specified index from the array.
Parameters
Return a new array containing only the elements of the original array for which the predicate is true.
Parameters
Remove one level of nesting from the array.
Return the position of the first occurrence of the value in the array.
Parameters
Insert the value at the specified index in the array.
Concatenate the elements of the array using the provided separator.
Parameters
Return the length of the array.
Apply the function to each element of the array.
Note: also supports more complex callables like functools.partial and lambdas with closures
Parameters
Return the maximum value of the array
Return the minimum value of the array
Return a new array with all occurrences of the value removed. Note that in the python standard library, this method only removes the first occurrence.
Parameters
Return the array repeated n
times.
Parameters
Return a new array with the elements sorted.
Return a new array with the elements of both arrays, with duplicates removed.
Parameters
Return a new array with the duplicate elements removed.
Unnest the array into a new table.
Note: Rows with empty arrays are dropped in the output.
Return a new array with the elements of the original array and the other arrays zipped together.
The combined map will have f1, f2, f3, etc. as the keys.