Basic functions
Array manipulation, counting, null handling, and utility functions from io.deephaven.function.Basic.
| Type | Name | Signature | Description |
|---|---|---|---|
| FUNCTION | array | byte[](ByteVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | char[](CharVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | double[](DoubleVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | float[](FloatVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | int[](IntVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | long[](LongVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | array | short[](ShortVector) | Converts a Deephaven vector to a primitive array that may be freely mutated by the caller. |
| FUNCTION | arrayObj | Object[](ObjectVector) | Converts a Deephaven vector to an array that may be freely mutated by the caller. |
| FUNCTION | concat | Object[](ObjectVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | Object[](Object[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | byte[](ByteVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | byte[](byte[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | char[](CharVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | char[](char[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | double[](DoubleVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | double[](double[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | float[](FloatVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | float[](float[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | int[](IntVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | int[](int[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | long[](LongVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | long[](long[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | short[](ShortVector...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | concat | short[](short[]...) | Returns the concatenation of multiple arrays into a single array. |
| FUNCTION | count | long(ByteVector) | Counts the number of non-null values. |
| FUNCTION | count | long(CharVector) | Counts the number of non-null values. |
| FUNCTION | count | long(DoubleVector) | Counts the number of non-null values. |
| FUNCTION | count | long(FloatVector) | Counts the number of non-null values. |
| FUNCTION | count | long(IntVector) | Counts the number of non-null values. |
| FUNCTION | count | long(LongVector) | Counts the number of non-null values. |
| FUNCTION | count | long(ShortVector) | Counts the number of non-null values. |
| FUNCTION | count | long(byte...) | Counts the number of non-null values. |
| FUNCTION | count | long(char...) | Counts the number of non-null values. |
| FUNCTION | count | long(double...) | Counts the number of non-null values. |
| FUNCTION | count | long(float...) | Counts the number of non-null values. |
| FUNCTION | count | long(int...) | Counts the number of non-null values. |
| FUNCTION | count | long(long...) | Counts the number of non-null values. |
| FUNCTION | count | long(short...) | Counts the number of non-null values. |
| FUNCTION | countDistinct | long(ByteVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(ByteVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(CharVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(CharVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(DoubleVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(DoubleVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(FloatVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(FloatVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(IntVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(IntVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(LongVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(LongVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(ShortVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(ShortVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(byte...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(byte[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(char...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(char[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(double...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(double[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(float...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(float[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(int...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(int[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(long...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(long[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(short...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinct | long(short[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinctObj | long(Comparable...) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinctObj | long(Comparable[], boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinctObj | long(ObjectVector) | Counts the number of distinct elements in the array. |
| FUNCTION | countDistinctObj | long(ObjectVector, boolean) | Counts the number of distinct elements in the array. |
| FUNCTION | countObj | long(Object...) | Counts the number of non-null values. |
| FUNCTION | countObj | long(ObjectVector) | Counts the number of non-null values. |
| FUNCTION | distinct | byte[](ByteVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | byte[](ByteVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | byte[](byte...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | byte[](byte[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | char[](CharVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | char[](CharVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | char[](char...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | char[](char[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | double[](DoubleVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | double[](DoubleVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | double[](double...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | double[](double[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | float[](FloatVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | float[](FloatVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | float[](float...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | float[](float[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | int[](IntVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | int[](IntVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | int[](int...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | int[](int[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | long[](LongVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | long[](LongVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | long[](long...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | long[](long[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | short[](ShortVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | short[](ShortVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | short[](short...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinct | short[](short[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinctObj | Comparable[](Comparable...) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinctObj | Comparable[](Comparable[], boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinctObj | Comparable[](ObjectVector) | Returns an array containing only the distinct values from the input. |
| FUNCTION | distinctObj | Comparable[](ObjectVector, boolean) | Returns an array containing only the distinct values from the input. |
| FUNCTION | enlist | byte[](byte...) | Returns a list containing its arguments. |
| FUNCTION | enlist | char[](char...) | Returns a list containing its arguments. |
| FUNCTION | enlist | double[](double...) | Returns a list containing its arguments. |
| FUNCTION | enlist | float[](float...) | Returns a list containing its arguments. |
| FUNCTION | enlist | int[](int...) | Returns a list containing its arguments. |
| FUNCTION | enlist | long[](long...) | Returns a list containing its arguments. |
| FUNCTION | enlist | short[](short...) | Returns a list containing its arguments. |
| FUNCTION | first | byte(ByteVector) | Returns the first value from an array. |
| FUNCTION | first | byte(byte...) | Returns the first value from an array. |
| FUNCTION | first | char(CharVector) | Returns the first value from an array. |
| FUNCTION | first | char(char...) | Returns the first value from an array. |
| FUNCTION | first | double(DoubleVector) | Returns the first value from an array. |
| FUNCTION | first | double(double...) | Returns the first value from an array. |
| FUNCTION | first | float(FloatVector) | Returns the first value from an array. |
| FUNCTION | first | float(float...) | Returns the first value from an array. |
| FUNCTION | first | int(IntVector) | Returns the first value from an array. |
| FUNCTION | first | int(int...) | Returns the first value from an array. |
| FUNCTION | first | long(LongVector) | Returns the first value from an array. |
| FUNCTION | first | long(long...) | Returns the first value from an array. |
| FUNCTION | first | short(ShortVector) | Returns the first value from an array. |
| FUNCTION | first | short(short...) | Returns the first value from an array. |
| FUNCTION | firstIndexOf | long(byte, ByteVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(byte, byte...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(char, CharVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(char, char...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(double, DoubleVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(double, double...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(float, FloatVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(float, float...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(int, IntVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(int, int...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(long, LongVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(long, long...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(short, ShortVector) | Returns the first index containing the value. |
| FUNCTION | firstIndexOf | long(short, short...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOfObj | long(Object, Object...) | Returns the first index containing the value. |
| FUNCTION | firstIndexOfObj | long(Object, ObjectVector) | Returns the first index containing the value. |
| FUNCTION | firstObj | Object(Object...) | Returns the first value from an array. |
| FUNCTION | firstObj | Object(ObjectVector) | Returns the first value from an array. |
| FUNCTION | forwardFill | byte[](ByteVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | byte[](byte...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | char[](CharVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | char[](char...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | double[](DoubleVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | double[](double...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | float[](FloatVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | float[](float...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | int[](IntVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | int[](int...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | long[](LongVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | long[](long...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | short[](ShortVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFill | short[](short...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFillObj | Object[](Object...) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | forwardFillObj | Object[](ObjectVector) | Copies the specified array, replacing elements that represent null in the Deephaven convention by... |
| FUNCTION | ifelse | byte(Boolean, byte, byte) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | byte[](Boolean[], byte, byte) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | byte[](Boolean[], byte[], byte[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | byte[](ObjectVector, ByteVector, ByteVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | byte[](ObjectVector, byte, byte) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | char(Boolean, char, char) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | char[](Boolean[], char, char) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | char[](Boolean[], char[], char[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | char[](ObjectVector, CharVector, CharVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | char[](ObjectVector, char, char) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | double(Boolean, double, double) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | double[](Boolean[], double, double) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | double[](Boolean[], double[], double[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | double[](ObjectVector, DoubleVector, DoubleVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | double[](ObjectVector, double, double) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | float(Boolean, float, float) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | float[](Boolean[], float, float) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | float[](Boolean[], float[], float[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | float[](ObjectVector, FloatVector, FloatVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | float[](ObjectVector, float, float) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | int(Boolean, int, int) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | int[](Boolean[], int, int) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | int[](Boolean[], int[], int[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | int[](ObjectVector, IntVector, IntVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | int[](ObjectVector, int, int) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | long(Boolean, long, long) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | long[](Boolean[], long, long) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | long[](Boolean[], long[], long[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | long[](ObjectVector, LongVector, LongVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | long[](ObjectVector, long, long) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | short(Boolean, short, short) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | short[](Boolean[], short, short) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | short[](Boolean[], short[], short[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | short[](ObjectVector, ShortVector, ShortVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelse | short[](ObjectVector, short, short) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelseObj | Object(Boolean, Object, Object) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelseObj | Object[](Boolean[], Object, Object) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelseObj | Object[](Boolean[], Object[], Object[]) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelseObj | Object[](ObjectVector, Object, Object) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | ifelseObj | Object[](ObjectVector, ObjectVector, ObjectVector) | Returns elements from either trueCase or falseCase, depending on condition. |
| FUNCTION | in | boolean(byte, byte...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(char, char...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(double, double...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(float, float...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(int, int...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(long, long...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | in | boolean(short, short...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | inObj | boolean(Object, Object...) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | inObj | boolean(Object, ObjectVector) | Checks if a value is within a discrete set of possible values. |
| FUNCTION | inRange | boolean(Comparable, Comparable, Comparable) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(byte, byte, byte) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(char, char, char) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(double, double, double) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(float, float, float) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(int, int, int) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(long, long, long) | Checks if a value is within a range. |
| FUNCTION | inRange | boolean(short, short, short) | Checks if a value is within a range. |
| FUNCTION | isNull | boolean(Object) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(byte) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(char) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(double) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(float) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(int) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(long) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | isNull | boolean(short) | Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv... |
| FUNCTION | last | byte(ByteVector) | Returns the last value from an array. |
| FUNCTION | last | byte(byte...) | Returns the last value from an array. |
| FUNCTION | last | char(CharVector) | Returns the last value from an array. |
| FUNCTION | last | char(char...) | Returns the last value from an array. |
| FUNCTION | last | double(DoubleVector) | Returns the last value from an array. |
| FUNCTION | last | double(double...) | Returns the last value from an array. |
| FUNCTION | last | float(FloatVector) | Returns the last value from an array. |
| FUNCTION | last | float(float...) | Returns the last value from an array. |
| FUNCTION | last | int(IntVector) | Returns the last value from an array. |
| FUNCTION | last | int(int...) | Returns the last value from an array. |
| FUNCTION | last | long(LongVector) | Returns the last value from an array. |
| FUNCTION | last | long(long...) | Returns the last value from an array. |
| FUNCTION | last | short(ShortVector) | Returns the last value from an array. |
| FUNCTION | last | short(short...) | Returns the last value from an array. |
| FUNCTION | lastObj | Object(Object...) | Returns the last value from an array. |
| FUNCTION | lastObj | Object(ObjectVector) | Returns the last value from an array. |
| FUNCTION | len | long(LongSizedDataStructure) | Returns the length of the input. |
| FUNCTION | len | long(Object[]) | Returns the length of the input. |
| FUNCTION | len | long(byte[]) | Returns the length of the input. |
| FUNCTION | len | long(char[]) | Returns the length of the input. |
| FUNCTION | len | long(double[]) | Returns the length of the input. |
| FUNCTION | len | long(float[]) | Returns the length of the input. |
| FUNCTION | len | long(int[]) | Returns the length of the input. |
| FUNCTION | len | long(long[]) | Returns the length of the input. |
| FUNCTION | len | long(short[]) | Returns the length of the input. |
| FUNCTION | nth | byte(long, ByteVector) | Returns the nth value from an array. |
| FUNCTION | nth | byte(long, byte...) | Returns the nth value from an array. |
| FUNCTION | nth | char(long, CharVector) | Returns the nth value from an array. |
| FUNCTION | nth | char(long, char...) | Returns the nth value from an array. |
| FUNCTION | nth | double(long, DoubleVector) | Returns the nth value from an array. |
| FUNCTION | nth | double(long, double...) | Returns the nth value from an array. |
| FUNCTION | nth | float(long, FloatVector) | Returns the nth value from an array. |
| FUNCTION | nth | float(long, float...) | Returns the nth value from an array. |
| FUNCTION | nth | int(long, IntVector) | Returns the nth value from an array. |
| FUNCTION | nth | int(long, int...) | Returns the nth value from an array. |
| FUNCTION | nth | long(long, LongVector) | Returns the nth value from an array. |
| FUNCTION | nth | long(long, long...) | Returns the nth value from an array. |
| FUNCTION | nth | short(long, ShortVector) | Returns the nth value from an array. |
| FUNCTION | nth | short(long, short...) | Returns the nth value from an array. |
| FUNCTION | nthObj | Object(long, Object...) | Returns the nth value from an array. |
| FUNCTION | nthObj | Object(long, ObjectVector) | Returns the nth value from an array. |
| FUNCTION | nullValueFor | Object(Class) | Returns the null value in the Deephaven convention that corresponds to type T. |
| FUNCTION | repeat | Object[](Object, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | byte[](byte, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | char[](char, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | double[](double, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | float[](float, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | int[](int, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | long[](long, int) | Returns an array with a value repeated. |
| FUNCTION | repeat | short[](short, int) | Returns an array with a value repeated. |
| FUNCTION | replaceIfNull | Object(Object, Object) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | Object[](ObjectVector, Object) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | Object[](Object[], Object) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | byte(byte, byte) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | byte[](ByteVector, byte) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | byte[](byte[], byte) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | char(char, char) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | char[](CharVector, char) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | char[](char[], char) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | double(double, double) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | double[](DoubleVector, double) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | double[](double[], double) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | float(float, float) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | float[](FloatVector, float) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | float[](float[], float) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | int(int, int) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | int[](IntVector, int) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | int[](int[], int) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | long(long, long) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | long[](LongVector, long) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | long[](long[], long) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | short(short, short) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | short[](ShortVector, short) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | replaceIfNull | short[](short[], short) | Replaces values that are null according to Deephaven convention with a specified value. |
| FUNCTION | reverse | byte[](ByteVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | byte[](byte...) | Returns an array with the values reversed. |
| FUNCTION | reverse | char[](CharVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | char[](char...) | Returns an array with the values reversed. |
| FUNCTION | reverse | double[](DoubleVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | double[](double...) | Returns an array with the values reversed. |
| FUNCTION | reverse | float[](FloatVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | float[](float...) | Returns an array with the values reversed. |
| FUNCTION | reverse | int[](IntVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | int[](int...) | Returns an array with the values reversed. |
| FUNCTION | reverse | long[](LongVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | long[](long...) | Returns an array with the values reversed. |
| FUNCTION | reverse | short[](ShortVector) | Returns an array with the values reversed. |
| FUNCTION | reverse | short[](short...) | Returns an array with the values reversed. |
| FUNCTION | reverseObj | Object[](Object...) | Returns an array with the values reversed. |
| FUNCTION | reverseObj | Object[](ObjectVector) | Returns an array with the values reversed. |
| FUNCTION | unbox | byte[](Byte...) | Unboxes an array of values. |
| FUNCTION | unbox | char[](Character...) | Unboxes an array of values. |
| FUNCTION | unbox | double[](Double...) | Unboxes an array of values. |
| FUNCTION | unbox | float[](Float...) | Unboxes an array of values. |
| FUNCTION | unbox | int[](Integer...) | Unboxes an array of values. |
| FUNCTION | unbox | long[](Long...) | Unboxes an array of values. |
| FUNCTION | unbox | short[](Short...) | Unboxes an array of values. |
| FUNCTION | vec | ByteVector(byte...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | CharVector(char...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | DoubleVector(double...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | FloatVector(float...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | IntVector(int...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | LongVector(long...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vec | ShortVector(short...) | Converts a primitive array to a Deephaven vector. |
| FUNCTION | vecObj | ObjectVector(Object...) | Converts an array to a Deephaven vector. |