Basic functions

Array manipulation, counting, null handling, and utility functions from io.deephaven.function.Basic.

TypeNameSignatureDescription
FUNCTIONarraybyte[](ByteVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarraychar[](CharVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarraydouble[](DoubleVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarrayfloat[](FloatVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarrayint[](IntVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarraylong[](LongVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarrayshort[](ShortVector)Converts a Deephaven vector to a primitive array that may be freely mutated by the caller.
FUNCTIONarrayObjObject[](ObjectVector)Converts a Deephaven vector to an array that may be freely mutated by the caller.
FUNCTIONconcatObject[](ObjectVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatObject[](Object[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatbyte[](ByteVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatbyte[](byte[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatchar[](CharVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatchar[](char[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatdouble[](DoubleVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatdouble[](double[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatfloat[](FloatVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatfloat[](float[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatint[](IntVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatint[](int[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatlong[](LongVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatlong[](long[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatshort[](ShortVector...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONconcatshort[](short[]...)Returns the concatenation of multiple arrays into a single array.
FUNCTIONcountlong(ByteVector)Counts the number of non-null values.
FUNCTIONcountlong(CharVector)Counts the number of non-null values.
FUNCTIONcountlong(DoubleVector)Counts the number of non-null values.
FUNCTIONcountlong(FloatVector)Counts the number of non-null values.
FUNCTIONcountlong(IntVector)Counts the number of non-null values.
FUNCTIONcountlong(LongVector)Counts the number of non-null values.
FUNCTIONcountlong(ShortVector)Counts the number of non-null values.
FUNCTIONcountlong(byte...)Counts the number of non-null values.
FUNCTIONcountlong(char...)Counts the number of non-null values.
FUNCTIONcountlong(double...)Counts the number of non-null values.
FUNCTIONcountlong(float...)Counts the number of non-null values.
FUNCTIONcountlong(int...)Counts the number of non-null values.
FUNCTIONcountlong(long...)Counts the number of non-null values.
FUNCTIONcountlong(short...)Counts the number of non-null values.
FUNCTIONcountDistinctlong(ByteVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(ByteVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(CharVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(CharVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(DoubleVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(DoubleVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(FloatVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(FloatVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(IntVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(IntVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(LongVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(LongVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(ShortVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(ShortVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(byte...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(byte[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(char...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(char[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(double...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(double[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(float...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(float[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(int...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(int[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(long...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(long[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(short...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctlong(short[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctObjlong(Comparable...)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctObjlong(Comparable[], boolean)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctObjlong(ObjectVector)Counts the number of distinct elements in the array.
FUNCTIONcountDistinctObjlong(ObjectVector, boolean)Counts the number of distinct elements in the array.
FUNCTIONcountObjlong(Object...)Counts the number of non-null values.
FUNCTIONcountObjlong(ObjectVector)Counts the number of non-null values.
FUNCTIONdistinctbyte[](ByteVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctbyte[](ByteVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctbyte[](byte...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctbyte[](byte[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctchar[](CharVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctchar[](CharVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctchar[](char...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctchar[](char[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctdouble[](DoubleVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctdouble[](DoubleVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctdouble[](double...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctdouble[](double[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctfloat[](FloatVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctfloat[](FloatVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctfloat[](float...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctfloat[](float[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctint[](IntVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctint[](IntVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctint[](int...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctint[](int[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctlong[](LongVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctlong[](LongVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctlong[](long...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctlong[](long[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctshort[](ShortVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctshort[](ShortVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctshort[](short...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctshort[](short[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctObjComparable[](Comparable...)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctObjComparable[](Comparable[], boolean)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctObjComparable[](ObjectVector)Returns an array containing only the distinct values from the input.
FUNCTIONdistinctObjComparable[](ObjectVector, boolean)Returns an array containing only the distinct values from the input.
FUNCTIONenlistbyte[](byte...)Returns a list containing its arguments.
FUNCTIONenlistchar[](char...)Returns a list containing its arguments.
FUNCTIONenlistdouble[](double...)Returns a list containing its arguments.
FUNCTIONenlistfloat[](float...)Returns a list containing its arguments.
FUNCTIONenlistint[](int...)Returns a list containing its arguments.
FUNCTIONenlistlong[](long...)Returns a list containing its arguments.
FUNCTIONenlistshort[](short...)Returns a list containing its arguments.
FUNCTIONfirstbyte(ByteVector)Returns the first value from an array.
FUNCTIONfirstbyte(byte...)Returns the first value from an array.
FUNCTIONfirstchar(CharVector)Returns the first value from an array.
FUNCTIONfirstchar(char...)Returns the first value from an array.
FUNCTIONfirstdouble(DoubleVector)Returns the first value from an array.
FUNCTIONfirstdouble(double...)Returns the first value from an array.
FUNCTIONfirstfloat(FloatVector)Returns the first value from an array.
FUNCTIONfirstfloat(float...)Returns the first value from an array.
FUNCTIONfirstint(IntVector)Returns the first value from an array.
FUNCTIONfirstint(int...)Returns the first value from an array.
FUNCTIONfirstlong(LongVector)Returns the first value from an array.
FUNCTIONfirstlong(long...)Returns the first value from an array.
FUNCTIONfirstshort(ShortVector)Returns the first value from an array.
FUNCTIONfirstshort(short...)Returns the first value from an array.
FUNCTIONfirstIndexOflong(byte, ByteVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(byte, byte...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(char, CharVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(char, char...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(double, DoubleVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(double, double...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(float, FloatVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(float, float...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(int, IntVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(int, int...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(long, LongVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(long, long...)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(short, ShortVector)Returns the first index containing the value.
FUNCTIONfirstIndexOflong(short, short...)Returns the first index containing the value.
FUNCTIONfirstIndexOfObjlong(Object, Object...)Returns the first index containing the value.
FUNCTIONfirstIndexOfObjlong(Object, ObjectVector)Returns the first index containing the value.
FUNCTIONfirstObjObject(Object...)Returns the first value from an array.
FUNCTIONfirstObjObject(ObjectVector)Returns the first value from an array.
FUNCTIONforwardFillbyte[](ByteVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillbyte[](byte...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillchar[](CharVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillchar[](char...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFilldouble[](DoubleVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFilldouble[](double...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillfloat[](FloatVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillfloat[](float...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillint[](IntVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillint[](int...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFilllong[](LongVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFilllong[](long...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillshort[](ShortVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillshort[](short...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillObjObject[](Object...)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONforwardFillObjObject[](ObjectVector)Copies the specified array, replacing elements that represent null in the Deephaven convention by...
FUNCTIONifelsebyte(Boolean, byte, byte)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsebyte[](Boolean[], byte, byte)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsebyte[](Boolean[], byte[], byte[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsebyte[](ObjectVector, ByteVector, ByteVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsebyte[](ObjectVector, byte, byte)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsechar(Boolean, char, char)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsechar[](Boolean[], char, char)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsechar[](Boolean[], char[], char[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsechar[](ObjectVector, CharVector, CharVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsechar[](ObjectVector, char, char)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsedouble(Boolean, double, double)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsedouble[](Boolean[], double, double)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsedouble[](Boolean[], double[], double[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsedouble[](ObjectVector, DoubleVector, DoubleVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsedouble[](ObjectVector, double, double)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsefloat(Boolean, float, float)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsefloat[](Boolean[], float, float)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsefloat[](Boolean[], float[], float[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsefloat[](ObjectVector, FloatVector, FloatVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelsefloat[](ObjectVector, float, float)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseint(Boolean, int, int)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseint[](Boolean[], int, int)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseint[](Boolean[], int[], int[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseint[](ObjectVector, IntVector, IntVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseint[](ObjectVector, int, int)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelselong(Boolean, long, long)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelselong[](Boolean[], long, long)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelselong[](Boolean[], long[], long[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelselong[](ObjectVector, LongVector, LongVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelselong[](ObjectVector, long, long)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseshort(Boolean, short, short)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseshort[](Boolean[], short, short)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseshort[](Boolean[], short[], short[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseshort[](ObjectVector, ShortVector, ShortVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseshort[](ObjectVector, short, short)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseObjObject(Boolean, Object, Object)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseObjObject[](Boolean[], Object, Object)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseObjObject[](Boolean[], Object[], Object[])Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseObjObject[](ObjectVector, Object, Object)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONifelseObjObject[](ObjectVector, ObjectVector, ObjectVector)Returns elements from either trueCase or falseCase, depending on condition.
FUNCTIONinboolean(byte, byte...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(char, char...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(double, double...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(float, float...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(int, int...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(long, long...)Checks if a value is within a discrete set of possible values.
FUNCTIONinboolean(short, short...)Checks if a value is within a discrete set of possible values.
FUNCTIONinObjboolean(Object, Object...)Checks if a value is within a discrete set of possible values.
FUNCTIONinObjboolean(Object, ObjectVector)Checks if a value is within a discrete set of possible values.
FUNCTIONinRangeboolean(Comparable, Comparable, Comparable)Checks if a value is within a range.
FUNCTIONinRangeboolean(byte, byte, byte)Checks if a value is within a range.
FUNCTIONinRangeboolean(char, char, char)Checks if a value is within a range.
FUNCTIONinRangeboolean(double, double, double)Checks if a value is within a range.
FUNCTIONinRangeboolean(float, float, float)Checks if a value is within a range.
FUNCTIONinRangeboolean(int, int, int)Checks if a value is within a range.
FUNCTIONinRangeboolean(long, long, long)Checks if a value is within a range.
FUNCTIONinRangeboolean(short, short, short)Checks if a value is within a range.
FUNCTIONisNullboolean(Object)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(byte)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(char)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(double)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(float)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(int)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(long)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONisNullboolean(short)Determines if a value is considered by the Deephaven convention to be null. In the Deephaven conv...
FUNCTIONlastbyte(ByteVector)Returns the last value from an array.
FUNCTIONlastbyte(byte...)Returns the last value from an array.
FUNCTIONlastchar(CharVector)Returns the last value from an array.
FUNCTIONlastchar(char...)Returns the last value from an array.
FUNCTIONlastdouble(DoubleVector)Returns the last value from an array.
FUNCTIONlastdouble(double...)Returns the last value from an array.
FUNCTIONlastfloat(FloatVector)Returns the last value from an array.
FUNCTIONlastfloat(float...)Returns the last value from an array.
FUNCTIONlastint(IntVector)Returns the last value from an array.
FUNCTIONlastint(int...)Returns the last value from an array.
FUNCTIONlastlong(LongVector)Returns the last value from an array.
FUNCTIONlastlong(long...)Returns the last value from an array.
FUNCTIONlastshort(ShortVector)Returns the last value from an array.
FUNCTIONlastshort(short...)Returns the last value from an array.
FUNCTIONlastObjObject(Object...)Returns the last value from an array.
FUNCTIONlastObjObject(ObjectVector)Returns the last value from an array.
FUNCTIONlenlong(LongSizedDataStructure)Returns the length of the input.
FUNCTIONlenlong(Object[])Returns the length of the input.
FUNCTIONlenlong(byte[])Returns the length of the input.
FUNCTIONlenlong(char[])Returns the length of the input.
FUNCTIONlenlong(double[])Returns the length of the input.
FUNCTIONlenlong(float[])Returns the length of the input.
FUNCTIONlenlong(int[])Returns the length of the input.
FUNCTIONlenlong(long[])Returns the length of the input.
FUNCTIONlenlong(short[])Returns the length of the input.
FUNCTIONnthbyte(long, ByteVector)Returns the nth value from an array.
FUNCTIONnthbyte(long, byte...)Returns the nth value from an array.
FUNCTIONnthchar(long, CharVector)Returns the nth value from an array.
FUNCTIONnthchar(long, char...)Returns the nth value from an array.
FUNCTIONnthdouble(long, DoubleVector)Returns the nth value from an array.
FUNCTIONnthdouble(long, double...)Returns the nth value from an array.
FUNCTIONnthfloat(long, FloatVector)Returns the nth value from an array.
FUNCTIONnthfloat(long, float...)Returns the nth value from an array.
FUNCTIONnthint(long, IntVector)Returns the nth value from an array.
FUNCTIONnthint(long, int...)Returns the nth value from an array.
FUNCTIONnthlong(long, LongVector)Returns the nth value from an array.
FUNCTIONnthlong(long, long...)Returns the nth value from an array.
FUNCTIONnthshort(long, ShortVector)Returns the nth value from an array.
FUNCTIONnthshort(long, short...)Returns the nth value from an array.
FUNCTIONnthObjObject(long, Object...)Returns the nth value from an array.
FUNCTIONnthObjObject(long, ObjectVector)Returns the nth value from an array.
FUNCTIONnullValueForObject(Class)Returns the null value in the Deephaven convention that corresponds to type T.
FUNCTIONrepeatObject[](Object, int)Returns an array with a value repeated.
FUNCTIONrepeatbyte[](byte, int)Returns an array with a value repeated.
FUNCTIONrepeatchar[](char, int)Returns an array with a value repeated.
FUNCTIONrepeatdouble[](double, int)Returns an array with a value repeated.
FUNCTIONrepeatfloat[](float, int)Returns an array with a value repeated.
FUNCTIONrepeatint[](int, int)Returns an array with a value repeated.
FUNCTIONrepeatlong[](long, int)Returns an array with a value repeated.
FUNCTIONrepeatshort[](short, int)Returns an array with a value repeated.
FUNCTIONreplaceIfNullObject(Object, Object)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullObject[](ObjectVector, Object)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullObject[](Object[], Object)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullbyte(byte, byte)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullbyte[](ByteVector, byte)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullbyte[](byte[], byte)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullchar(char, char)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullchar[](CharVector, char)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullchar[](char[], char)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulldouble(double, double)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulldouble[](DoubleVector, double)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulldouble[](double[], double)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullfloat(float, float)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullfloat[](FloatVector, float)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullfloat[](float[], float)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullint(int, int)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullint[](IntVector, int)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullint[](int[], int)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulllong(long, long)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulllong[](LongVector, long)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNulllong[](long[], long)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullshort(short, short)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullshort[](ShortVector, short)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullshort[](short[], short)Replaces values that are null according to Deephaven convention with a specified value.
FUNCTIONreversebyte[](ByteVector)Returns an array with the values reversed.
FUNCTIONreversebyte[](byte...)Returns an array with the values reversed.
FUNCTIONreversechar[](CharVector)Returns an array with the values reversed.
FUNCTIONreversechar[](char...)Returns an array with the values reversed.
FUNCTIONreversedouble[](DoubleVector)Returns an array with the values reversed.
FUNCTIONreversedouble[](double...)Returns an array with the values reversed.
FUNCTIONreversefloat[](FloatVector)Returns an array with the values reversed.
FUNCTIONreversefloat[](float...)Returns an array with the values reversed.
FUNCTIONreverseint[](IntVector)Returns an array with the values reversed.
FUNCTIONreverseint[](int...)Returns an array with the values reversed.
FUNCTIONreverselong[](LongVector)Returns an array with the values reversed.
FUNCTIONreverselong[](long...)Returns an array with the values reversed.
FUNCTIONreverseshort[](ShortVector)Returns an array with the values reversed.
FUNCTIONreverseshort[](short...)Returns an array with the values reversed.
FUNCTIONreverseObjObject[](Object...)Returns an array with the values reversed.
FUNCTIONreverseObjObject[](ObjectVector)Returns an array with the values reversed.
FUNCTIONunboxbyte[](Byte...)Unboxes an array of values.
FUNCTIONunboxchar[](Character...)Unboxes an array of values.
FUNCTIONunboxdouble[](Double...)Unboxes an array of values.
FUNCTIONunboxfloat[](Float...)Unboxes an array of values.
FUNCTIONunboxint[](Integer...)Unboxes an array of values.
FUNCTIONunboxlong[](Long...)Unboxes an array of values.
FUNCTIONunboxshort[](Short...)Unboxes an array of values.
FUNCTIONvecByteVector(byte...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecCharVector(char...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecDoubleVector(double...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecFloatVector(float...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecIntVector(int...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecLongVector(long...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecShortVector(short...)Converts a primitive array to a Deephaven vector.
FUNCTIONvecObjObjectVector(Object...)Converts an array to a Deephaven vector.