Skip to main content
Version: Python

Auto-imported functions

This guide lists the Java methods that are automatically imported into a Deephaven session upon startup.

These imports, which include classes, methods, and constants, are available to use inside query strings without specifying the classpath. In the following example, the query string calls abs, which is automatically imported upon server startup.

from deephaven import new_table
from deephaven.column import int_col

source = new_table([int_col("IntegerColumn", [1, 2, -2, -1])])
result = source.update(["Abs = abs(IntegerColumn)"])

img

We recommend using built-in Java methods whenenever possible. Java tends to be faster than Python and using pure Java avoids language boundary crossings, resulting in better performance. Whenever a Python method has a query language equivalent, always use the query language method.

Here is a complete list of everything that is imported automatically into the query language when a new instance of the Python IDE is started:

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.

Constants

TypeNameSignatureDescription
CONSTANTMAX_BYTEbyteMaximum value of type byte.
CONSTANTMAX_CHARcharMaximum value of type char.
CONSTANTMAX_DOUBLEdoubleMaximum value of type double.
CONSTANTMAX_FINITE_DOUBLEdoubleMaximum finite value of type double.
CONSTANTMAX_FINITE_FLOATfloatMaximum finite value of type float.
CONSTANTMAX_FLOATfloatMaximum value of type float.
CONSTANTMAX_INTintMaximum value of type int.
CONSTANTMAX_LONGlongMaximum value of type long.
CONSTANTMAX_SHORTshortMaximum value of type short.
CONSTANTMIN_BYTEbyteMinimum value of type byte.
CONSTANTMIN_CHARcharMinimum value of type char.
CONSTANTMIN_DOUBLEdoubleMinimum value of type double.
CONSTANTMIN_FINITE_DOUBLEdoubleMinimum finite value of type double.
CONSTANTMIN_FINITE_FLOATfloatMinimum finite value of type float.
CONSTANTMIN_FLOATfloatMinimum value of type float.
CONSTANTMIN_INTintMinimum value of type int.
CONSTANTMIN_LONGlongMinimum value of type long.
CONSTANTMIN_POS_DOUBLEdoubleMinimum positive value of type double.
CONSTANTMIN_POS_FLOATfloatMinimum positive value of type float.
CONSTANTMIN_SHORTshortMinimum value of type short.
CONSTANTNAN_DOUBLEdoubleNot-a-Number (NaN) of type double.
CONSTANTNAN_FLOATfloatNot-a-Number (NaN) of type float.
CONSTANTNEG_INFINITY_DOUBLEdoubleNegative infinity of type double.
CONSTANTNEG_INFINITY_FLOATfloatNegative infinity of type float.
CONSTANTNULL_BOOLEANBooleanNull boolean value.
CONSTANTNULL_BYTEbyteNull byte value.
CONSTANTNULL_BYTE_BOXEDByteNull boxed Byte value.F.
CONSTANTNULL_CHARcharNull char value.
CONSTANTNULL_CHAR_BOXEDCharacterNull boxed Character value.
CONSTANTNULL_DOUBLEdoubleNull double value.
CONSTANTNULL_DOUBLE_BOXEDDoubleNull boxed Double value.
CONSTANTNULL_FLOATfloatNull float value.
CONSTANTNULL_FLOAT_BOXEDFloatNull boxed Float value.
CONSTANTNULL_INTintNull int value.
CONSTANTNULL_INT_BOXEDIntegerNull boxed Integer value.
CONSTANTNULL_LONGlongNull long value.
CONSTANTNULL_LONG_BOXEDLongNull boxed Long value.
CONSTANTNULL_SHORTshortNull short value.
CONSTANTNULL_SHORT_BOXEDShortNull boxed Short value.
CONSTANTPOS_INFINITY_DOUBLEdoublePositive infinity of type double.
CONSTANTPOS_INFINITY_FLOATfloatPositive infinity of type float.

DataStructures

TypeNameSignatureDescription
CLASSByteChunkNoneChunk implementation for byte data.
CLASSCharChunkNoneChunk implementation for char data.
CLASSChunkNoneData structure for a contiguous region of data.
CLASSDoubleChunkNoneChunk implementation for double data.
CLASSFloatChunkNoneChunk implementation for float data.
CLASSIntChunkNoneChunk implementation for int data.
CLASSLongChunkNoneChunk implementation for long data.
CLASSLongSizedDataStructureNoneCommon interface for Deephaven data structures with a long (64-bit signed integer) size.
CLASSObjectChunkNoneChunk implementation for Object data.
CLASSShortChunkNoneChunk implementation for short data.
CLASSWritableByteChunkNoneWritableChunk implementation for byte data.
CLASSWritableCharChunkNoneWritableChunk implementation for char data.
CLASSWritableChunkNoneData structure for a contiguous region of data that may be mutated.
CLASSWritableDoubleChunkNoneWritableChunk implementation for double data.
CLASSWritableFloatChunkNoneWritableChunk implementation for float data.
CLASSWritableIntChunkNoneWritableChunk implementation for int data.
CLASSWritableLongChunkNoneWritableChunk implementation for long data.
CLASSWritableObjectChunkNoneWritableChunk implementation for Object data.
CLASSWritableShortChunkNoneWritableChunk implementation for short data.

DataTypes

TypeNameSignatureDescription
CLASSArrayTypeUtilsNoneCommon utilities for interacting generically with arrays.
CLASSCompressedStringNoneImmutable byte[]-backed String replacement.
CLASSTypeUtilsNoneUtility functions to convert primitive types.
CLASSVectorConversionsNoneUtility methods for converting vectors to native arrays. Used in formulas.
FUNCTIONcastDoubledouble(byte)Casts a value to a double.
FUNCTIONcastDoubledouble(byte, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble(double)Casts a value to a double.
FUNCTIONcastDoubledouble(double, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble(float)Casts a value to a double.
FUNCTIONcastDoubledouble(float, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble(int)Casts a value to a double.
FUNCTIONcastDoubledouble(int, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble(long)Casts a value to a double.
FUNCTIONcastDoubledouble(long, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble(short)Casts a value to a double.
FUNCTIONcastDoubledouble(short, boolean)Casts a value to a double.
FUNCTIONcastDoubledouble[](ByteVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](ByteVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](DoubleVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](DoubleVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](FloatVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](FloatVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](IntVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](IntVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](LongVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](LongVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](ShortVector)Casts an array to a double array.
FUNCTIONcastDoubledouble[](ShortVector, boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](byte...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](byte[], boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](double...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](double[], boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](float...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](float[], boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](int...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](int[], boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](long...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](long[], boolean)Casts an array to a double array.
FUNCTIONcastDoubledouble[](short...)Casts an array to a double array.
FUNCTIONcastDoubledouble[](short[], boolean)Casts an array to a double array.
FUNCTIONcastIntint(byte)Casts a value to an int.
FUNCTIONcastIntint(byte, boolean)Casts a value to an int.
FUNCTIONcastIntint(int)Casts a value to an int.
FUNCTIONcastIntint(int, boolean)Casts a value to an int.
FUNCTIONcastIntint(long)Casts a value to an int.
FUNCTIONcastIntint(long, boolean)Casts a value to an int.
FUNCTIONcastIntint(short)Casts a value to an int.
FUNCTIONcastIntint(short, boolean)Casts a value to an int.
FUNCTIONcastIntint[](ByteVector)Casts an array to an int array.
FUNCTIONcastIntint[](ByteVector, boolean)Casts an array to an int array.
FUNCTIONcastIntint[](IntVector)Casts an array to an int array.
FUNCTIONcastIntint[](IntVector, boolean)Casts an array to an int array.
FUNCTIONcastIntint[](LongVector)Casts an array to an int array.
FUNCTIONcastIntint[](LongVector, boolean)Casts an array to an int array.
FUNCTIONcastIntint[](ShortVector)Casts an array to an int array.
FUNCTIONcastIntint[](ShortVector, boolean)Casts an array to an int array.
FUNCTIONcastIntint[](byte...)Casts an array to an int array.
FUNCTIONcastIntint[](byte[], boolean)Casts an array to an int array.
FUNCTIONcastIntint[](int...)Casts an array to an int array.
FUNCTIONcastIntint[](int[], boolean)Casts an array to an int array.
FUNCTIONcastIntint[](long...)Casts an array to an int array.
FUNCTIONcastIntint[](long[], boolean)Casts an array to an int array.
FUNCTIONcastIntint[](short...)Casts an array to an int array.
FUNCTIONcastIntint[](short[], boolean)Casts an array to an int array.
FUNCTIONcastLonglong(byte)Casts a value to a long.
FUNCTIONcastLonglong(byte, boolean)Casts a value to a long.
FUNCTIONcastLonglong(int)Casts a value to a long.
FUNCTIONcastLonglong(int, boolean)Casts a value to a long.
FUNCTIONcastLonglong(long)Casts a value to a long.
FUNCTIONcastLonglong(long, boolean)Casts a value to a long.
FUNCTIONcastLonglong(short)Casts a value to a long.
FUNCTIONcastLonglong(short, boolean)Casts a value to a long.
FUNCTIONcastLonglong[](ByteVector)Casts an array to a long array.
FUNCTIONcastLonglong[](ByteVector, boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](IntVector)Casts an array to a long array.
FUNCTIONcastLonglong[](IntVector, boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](LongVector)Casts an array to a long array.
FUNCTIONcastLonglong[](LongVector, boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](ShortVector)Casts an array to a long array.
FUNCTIONcastLonglong[](ShortVector, boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](byte...)Casts an array to a long array.
FUNCTIONcastLonglong[](byte[], boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](int...)Casts an array to a long array.
FUNCTIONcastLonglong[](int[], boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](long...)Casts an array to a long array.
FUNCTIONcastLonglong[](long[], boolean)Casts an array to a long array.
FUNCTIONcastLonglong[](short...)Casts an array to a long array.
FUNCTIONcastLonglong[](short[], boolean)Casts an array to a long array.
FUNCTIONcompressCompressedString(String)Helper to be statically imported for groovy scripting.

GUI

TypeNameSignatureDescription
CONSTANTALICEBLUEColorA color.
CONSTANTANTIQUEWHITEColorA color.
CONSTANTAQUAColorA color.
CONSTANTAQUAMARINEColorA color.
CONSTANTAZUREColorA color.
CONSTANTBEIGEColorA color.
CONSTANTBISQUEColorA color.
CONSTANTBLACKColorA color.
CONSTANTBLANCHEDALMONDColorA color.
CONSTANTBLUEColorA color.
CONSTANTBLUEVIOLETColorA color.
CONSTANTBRIGHT_BLUEColorA color.
CONSTANTBRIGHT_BLUEGREENColorA color.
CONSTANTBRIGHT_GREENColorA color.
CONSTANTBRIGHT_GREENYELLOWColorA color.
CONSTANTBRIGHT_PURPLEColorA color.
CONSTANTBRIGHT_PURPLEBLUEColorA color.
CONSTANTBRIGHT_REDColorA color.
CONSTANTBRIGHT_REDPURPLEColorA color.
CONSTANTBRIGHT_YELLOWColorA color.
CONSTANTBRIGHT_YELLOWREDColorA color.
CONSTANTBROWNColorA color.
CONSTANTBURLYWOODColorA color.
CONSTANTCADETBLUEColorA color.
CONSTANTCHARTREUSEColorA color.
CONSTANTCHOCOLATEColorA color.
CONSTANTCOLOR_SET_BITlongNo description.
CONSTANTCORALColorA color.
CONSTANTCORNFLOWERBLUEColorA color.
CONSTANTCORNSILKColorA color.
CONSTANTCRIMSONColorA color.
CONSTANTCYANColorA color.
CONSTANTDARKBLUEColorA color.
CONSTANTDARKCYANColorA color.
CONSTANTDARKGOLDENRODColorA color.
CONSTANTDARKGRAYColorA color.
CONSTANTDARKGRAYISH_BLUEColorA color.
CONSTANTDARKGRAYISH_BLUEGREENColorA color.
CONSTANTDARKGRAYISH_GREENColorA color.
CONSTANTDARKGRAYISH_GREENYELLOWColorA color.
CONSTANTDARKGRAYISH_PURPLEColorA color.
CONSTANTDARKGRAYISH_PURPLEBLUEColorA color.
CONSTANTDARKGRAYISH_REDColorA color.
CONSTANTDARKGRAYISH_REDPURPLEColorA color.
CONSTANTDARKGRAYISH_YELLOWColorA color.
CONSTANTDARKGRAYISH_YELLOWREDColorA color.
CONSTANTDARKGREENColorA color.
CONSTANTDARKGREYColorA color.
CONSTANTDARKKHAKIColorA color.
CONSTANTDARKMAGENTAColorA color.
CONSTANTDARKOLIVEGREENColorA color.
CONSTANTDARKORANGEColorA color.
CONSTANTDARKORCHIDColorA color.
CONSTANTDARKREDColorA color.
CONSTANTDARKSALMONColorA color.
CONSTANTDARKSEAGREENColorA color.
CONSTANTDARKSLATEBLUEColorA color.
CONSTANTDARKSLATEGRAYColorA color.
CONSTANTDARKSLATEGREYColorA color.
CONSTANTDARKTURQUOISEColorA color.
CONSTANTDARKVIOLETColorA color.
CONSTANTDARK_BLUEColorA color.
CONSTANTDARK_BLUEGREENColorA color.
CONSTANTDARK_GREENColorA color.
CONSTANTDARK_GREENYELLOWColorA color.
CONSTANTDARK_PURPLEColorA color.
CONSTANTDARK_PURPLEBLUEColorA color.
CONSTANTDARK_REDColorA color.
CONSTANTDARK_REDPURPLEColorA color.
CONSTANTDARK_YELLOWColorA color.
CONSTANTDARK_YELLOWREDColorA color.
CONSTANTDB_GREENColorA color.
CONSTANTDB_ORANGEColorA color.
CONSTANTDB_PINKColorA color.
CONSTANTDEEPPINKColorA color.
CONSTANTDEEPSKYBLUEColorA color.
CONSTANTDEEP_BLUEColorA color.
CONSTANTDEEP_BLUEGREENColorA color.
CONSTANTDEEP_GREENColorA color.
CONSTANTDEEP_GREENYELLOWColorA color.
CONSTANTDEEP_PURPLEColorA color.
CONSTANTDEEP_PURPLEBLUEColorA color.
CONSTANTDEEP_REDColorA color.
CONSTANTDEEP_REDPURPLEColorA color.
CONSTANTDEEP_YELLOWColorA color.
CONSTANTDEEP_YELLOWREDColorA color.
CONSTANTDIMGRAYColorA color.
CONSTANTDIMGREYColorA color.
CONSTANTDODGERBLUEColorA color.
CONSTANTDULL_BLUEColorA color.
CONSTANTDULL_BLUEGREENColorA color.
CONSTANTDULL_GREENColorA color.
CONSTANTDULL_GREENYELLOWColorA color.
CONSTANTDULL_PURPLEColorA color.
CONSTANTDULL_PURPLEBLUEColorA color.
CONSTANTDULL_REDColorA color.
CONSTANTDULL_REDPURPLEColorA color.
CONSTANTDULL_YELLOWColorA color.
CONSTANTDULL_YELLOWREDColorA color.
CONSTANTFIREBRICKColorA color.
CONSTANTFLORALWHITEColorA color.
CONSTANTFOREGROUND_SET_BITlongNo description.
CONSTANTFORESTGREENColorA color.
CONSTANTFUCHSIAColorA color.
CONSTANTGAINSBOROColorA color.
CONSTANTGHOSTWHITEColorA color.
CONSTANTGOLDColorA color.
CONSTANTGOLDENRODColorA color.
CONSTANTGRAYColorA color.
CONSTANTGRAY1ColorA color.
CONSTANTGRAY2ColorA color.
CONSTANTGRAY3ColorA color.
CONSTANTGRAY4ColorA color.
CONSTANTGRAY5ColorA color.
CONSTANTGRAY6ColorA color.
CONSTANTGRAY7ColorA color.
CONSTANTGRAY8ColorA color.
CONSTANTGRAYISH_BLUEColorA color.
CONSTANTGRAYISH_BLUEGREENColorA color.
CONSTANTGRAYISH_GREENColorA color.
CONSTANTGRAYISH_GREENYELLOWColorA color.
CONSTANTGRAYISH_PURPLEColorA color.
CONSTANTGRAYISH_PURPLEBLUEColorA color.
CONSTANTGRAYISH_REDColorA color.
CONSTANTGRAYISH_REDPURPLEColorA color.
CONSTANTGRAYISH_YELLOWColorA color.
CONSTANTGRAYISH_YELLOWREDColorA color.
CONSTANTGREENColorA color.
CONSTANTGREENYELLOWColorA color.
CONSTANTGREYColorA color.
CONSTANTHONEYDEWColorA color.
CONSTANTHOTPINKColorA color.
CONSTANTINDIANREDColorA color.
CONSTANTINDIGOColorA color.
CONSTANTIVORYColorA color.
CONSTANTKHAKIColorA color.
CONSTANTLAVENDERColorA color.
CONSTANTLAVENDERBLUSHColorA color.
CONSTANTLAWNGREENColorA color.
CONSTANTLEMONCHIFFONColorA color.
CONSTANTLIGHTBLUEColorA color.
CONSTANTLIGHTCORALColorA color.
CONSTANTLIGHTCYANColorA color.
CONSTANTLIGHTGOLDENRODYELLOWColorA color.
CONSTANTLIGHTGRAYColorA color.
CONSTANTLIGHTGRAYISH_BLUEColorA color.
CONSTANTLIGHTGRAYISH_BLUEGREENColorA color.
CONSTANTLIGHTGRAYISH_GREENColorA color.
CONSTANTLIGHTGRAYISH_GREENYELLOWColorA color.
CONSTANTLIGHTGRAYISH_PURPLEColorA color.
CONSTANTLIGHTGRAYISH_PURPLEBLUEColorA color.
CONSTANTLIGHTGRAYISH_REDColorA color.
CONSTANTLIGHTGRAYISH_REDPURPLEColorA color.
CONSTANTLIGHTGRAYISH_YELLOWColorA color.
CONSTANTLIGHTGRAYISH_YELLOWREDColorA color.
CONSTANTLIGHTGREENColorA color.
CONSTANTLIGHTGREYColorA color.
CONSTANTLIGHTPINKColorA color.
CONSTANTLIGHTSALMONColorA color.
CONSTANTLIGHTSEAGREENColorA color.
CONSTANTLIGHTSKYBLUEColorA color.
CONSTANTLIGHTSLATEGRAYColorA color.
CONSTANTLIGHTSLATEGREYColorA color.
CONSTANTLIGHTSTEELBLUEColorA color.
CONSTANTLIGHTYELLOWColorA color.
CONSTANTLIGHT_BLUEColorA color.
CONSTANTLIGHT_BLUEGREENColorA color.
CONSTANTLIGHT_GREENColorA color.
CONSTANTLIGHT_GREENYELLOWColorA color.
CONSTANTLIGHT_PURPLEColorA color.
CONSTANTLIGHT_PURPLEBLUEColorA color.
CONSTANTLIGHT_REDColorA color.
CONSTANTLIGHT_REDPURPLEColorA color.
CONSTANTLIGHT_YELLOWColorA color.
CONSTANTLIGHT_YELLOWREDColorA color.
CONSTANTLIMEColorA color.
CONSTANTLIMEGREENColorA color.
CONSTANTLINENColorA color.
CONSTANTMAGENTAColorA color.
CONSTANTMAROONColorA color.
CONSTANTMEDIUMAQUAMARINEColorA color.
CONSTANTMEDIUMBLUEColorA color.
CONSTANTMEDIUMORCHIDColorA color.
CONSTANTMEDIUMPURPLEColorA color.
CONSTANTMEDIUMSEAGREENColorA color.
CONSTANTMEDIUMSLATEBLUEColorA color.
CONSTANTMEDIUMSPRINGGREENColorA color.
CONSTANTMEDIUMTURQUOISEColorA color.
CONSTANTMEDIUMVIOLETREDColorA color.
CONSTANTMIDNIGHTBLUEColorA color.
CONSTANTMINTCREAMColorA color.
CONSTANTMISTYROSEColorA color.
CONSTANTMOCCASINColorA color.
CONSTANTNAVAJOWHITEColorA color.
CONSTANTNAVYColorA color.
CONSTANTNO_FORMATTINGColorA color.
CONSTANTOLDLACEColorA color.
CONSTANTOLIVEColorA color.
CONSTANTOLIVEDRABColorA color.
CONSTANTORANGEColorA color.
CONSTANTORANGEREDColorA color.
CONSTANTORCHIDColorA color.
CONSTANTPALEGOLDENRODColorA color.
CONSTANTPALEGREENColorA color.
CONSTANTPALETURQUOISEColorA color.
CONSTANTPALEVIOLETREDColorA color.
CONSTANTPALE_BLUEColorA color.
CONSTANTPALE_BLUEGREENColorA color.
CONSTANTPALE_GREENColorA color.
CONSTANTPALE_GREENYELLOWColorA color.
CONSTANTPALE_PURPLEColorA color.
CONSTANTPALE_PURPLEBLUEColorA color.
CONSTANTPALE_REDColorA color.
CONSTANTPALE_REDPURPLEColorA color.
CONSTANTPALE_YELLOWColorA color.
CONSTANTPALE_YELLOWREDColorA color.
CONSTANTPAPAYAWHIPColorA color.
CONSTANTPEACHPUFFColorA color.
CONSTANTPERUColorA color.
CONSTANTPINKColorA color.
CONSTANTPLUMColorA color.
CONSTANTPOWDERBLUEColorA color.
CONSTANTPURPLEColorA color.
CONSTANTREBECCAPURPLEColorA color.
CONSTANTREDColorA color.
CONSTANTROSYBROWNColorA color.
CONSTANTROYALBLUEColorA color.
CONSTANTSADDLEBROWNColorA color.
CONSTANTSALMONColorA color.
CONSTANTSANDYBROWNColorA color.
CONSTANTSEAGREENColorA color.
CONSTANTSEASHELLColorA color.
CONSTANTSELECTION_OVERRIDE_BITlongNo description.
CONSTANTSIENNAColorA color.
CONSTANTSILVERColorA color.
CONSTANTSKYBLUEColorA color.
CONSTANTSLATEBLUEColorA color.
CONSTANTSLATEGRAYColorA color.
CONSTANTSLATEGREYColorA color.
CONSTANTSNOWColorA color.
CONSTANTSPRINGGREENColorA color.
CONSTANTSTEELBLUEColorA color.
CONSTANTSTRONG_BLUEColorA color.
CONSTANTSTRONG_BLUEGREENColorA color.
CONSTANTSTRONG_GREENColorA color.
CONSTANTSTRONG_GREENYELLOWColorA color.
CONSTANTSTRONG_PURPLEColorA color.
CONSTANTSTRONG_PURPLEBLUEColorA color.
CONSTANTSTRONG_REDColorA color.
CONSTANTSTRONG_REDPURPLEColorA color.
CONSTANTSTRONG_YELLOWColorA color.
CONSTANTSTRONG_YELLOWREDColorA color.
CONSTANTTANColorA color.
CONSTANTTEALColorA color.
CONSTANTTHISTLEColorA color.
CONSTANTTOMATOColorA color.
CONSTANTTURQUOISEColorA color.
CONSTANTVERYPALE_BLUEColorA color.
CONSTANTVERYPALE_BLUEGREENColorA color.
CONSTANTVERYPALE_GREENColorA color.
CONSTANTVERYPALE_GREENYELLOWColorA color.
CONSTANTVERYPALE_PURPLEColorA color.
CONSTANTVERYPALE_PURPLEBLUEColorA color.
CONSTANTVERYPALE_REDColorA color.
CONSTANTVERYPALE_REDPURPLEColorA color.
CONSTANTVERYPALE_YELLOWColorA color.
CONSTANTVERYPALE_YELLOWREDColorA color.
CONSTANTVIOLETColorA color.
CONSTANTVIVID_BLUEColorA color.
CONSTANTVIVID_BLUEGREENColorA color.
CONSTANTVIVID_GREENColorA color.
CONSTANTVIVID_GREENYELLOWColorA color.
CONSTANTVIVID_PURPLEColorA color.
CONSTANTVIVID_PURPLEBLUEColorA color.
CONSTANTVIVID_REDColorA color.
CONSTANTVIVID_REDPURPLEColorA color.
CONSTANTVIVID_YELLOWColorA color.
CONSTANTVIVID_YELLOWREDColorA color.
CONSTANTWHEATColorA color.
CONSTANTWHITEColorA color.
CONSTANTWHITESMOKEColorA color.
CONSTANTYELLOWColorA color.
CONSTANTYELLOWGREENColorA color.
FUNCTIONbackgroundlong(Color)Creates a table format encoding with specified background color and an unformatted foreground.
FUNCTIONbackgroundlong(String)Creates a table format encoding with specified background color and an unformatted foreground.
FUNCTIONbackgroundForegroundlong(Color, Color)Creates a table format encoding with specified foreground and background colors.
FUNCTIONbackgroundForegroundlong(String, String)Creates a table format encoding with specified foreground and background colors.
FUNCTIONbackgroundForegroundAutolong(Color)Creates a table format encoding with specified background color and automatically chosen contrast...
FUNCTIONbackgroundForegroundAutolong(String)Creates a table format encoding with specified background color and automatically chosen contrast...
FUNCTIONbackgroundOverridelong(Color)Background with Override .. Overrides the default selection color.
FUNCTIONbackgroundOverridelong(String)Background with Override .. Overrides the default selection color.
FUNCTIONbackgroundOverridelong(long)Background with Override .. Overrides the default selection color.
FUNCTIONbglong(Color)Convenience method for background(Color). This variant takes the input color as a Color. .
FUNCTIONbglong(String)Convenience method for background(Color). This variant takes the input color as a String. This...
FUNCTIONbglong(long)Convenience method for background(Color). This variant takes the input color encoded as a long...
FUNCTIONbglong(long, long, long)Convenience method for background(Color). This variant takes color RBG components as inputs. .
FUNCTIONbgfglong(Color, Color)Convenience method for backgroundForeground(Color, Color). This variant takes the input colors...
FUNCTIONbgfglong(String, String)Convenience method for backgroundForeground(Color, Color). This variant takes the input colors...
FUNCTIONbgfglong(long, long)Convenience method for backgroundForeground(Color, Color). This variant takes colors encoded a...
FUNCTIONbgfglong(long, long, long, long, long, long)Convenience method for backgroundForeground(Color, Color). This variant takes color RBG compon...
FUNCTIONbgfgalong(Color)Convenience method for backgroundForegroundAuto(Color) This variant takes the input color as a ...
FUNCTIONbgfgalong(String)Convenience method for backgroundForegroundAuto(Color) This variant takes the input color as a ...
FUNCTIONbgfgalong(long)Convenience method for backgroundForegroundAuto(Color) This variant takes the input color encod...
FUNCTIONbgfgalong(long, long, long)Convenience method for backgroundForegroundAuto(Color) This variant takes color RBG components ...
FUNCTIONbgolong(Color)Convenience method for backgroundOverride(Color). This variant takes the input color as a Colo...
FUNCTIONbgolong(String)Convenience method for backgroundOverride(Color). This variant takes the input color as a Stri...
FUNCTIONbgolong(long)Convenience method for backgroundOverride(Color). This variant takes the input color encoded a...
FUNCTIONcolorColor(String)Creates a Color instance represented by the color String. Colors are specified by name or hex v...
FUNCTIONcolorHSLColor(float, float, float)Creates a Color with the specified hue, saturation, lightness, and alpha. The lower the alpha, th...
FUNCTIONcolorHSLColor(float, float, float, float)Creates a Color with the specified hue, saturation, lightness, and alpha. The lower the alpha, th...
FUNCTIONcolorNamesString[]()Gets the names of all available colors.
FUNCTIONcolorRGBColor(float, float, float)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONcolorRGBColor(float, float, float, float)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONcolorRGBColor(int)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONcolorRGBColor(int, boolean)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONcolorRGBColor(int, int, int)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONcolorRGBColor(int, int, int, int)Creates a Color with the specified red, green, blue, and alpha values.
FUNCTIONfglong(Color)Convenience method for foreground(Color). This variant takes the input color as a Color. .
FUNCTIONfglong(String)Convenience method for foreground(Color). This variant takes the input color as a String. This...
FUNCTIONfglong(long)Convenience method for foreground(Color). This variant takes the input color encoded as a long...
FUNCTIONfglong(long, long, long)Convenience method for foreground(Color). This variant takes color RBG components as inputs. .
FUNCTIONfgolong(Color)Convenience method for foregroundOverride(Color). This variant takes the input color as a Colo...
FUNCTIONfgolong(String)Convenience method for foregroundOverride(Color). This variant takes the input color as a Stri...
FUNCTIONfgolong(long)Convenience method for foregroundOverride(Color). This variant takes the input color encoded a...
FUNCTIONforegroundlong(Color)Creates a table format encoding with specified foreground color and unformatted background.
FUNCTIONforegroundlong(String)Creates a table format encoding with specified foreground color and unformatted background.
FUNCTIONforegroundOverridelong(Color)Foreground with Override .. Overrides the default selection color.
FUNCTIONforegroundOverridelong(String)Foreground with Override .. Overrides the default selection color.
FUNCTIONforegroundOverridelong(long)Foreground with Override .. Overrides the default selection color.
FUNCTIONheatmaplong(double, double, double, Color, Color)Creates a table format encoding for the heat map at value. A contrasting foreground color is aut...
FUNCTIONheatmaplong(double, double, double, String, String)Creates a table format encoding for the heat map at value. A contrasting foreground color is aut...
FUNCTIONheatmaplong(double, double, double, long, long)Creates a table format encoding for the heat map at value. A contrasting foreground color is aut...
FUNCTIONheatmapFglong(double, double, double, Color, Color)See heatmapFg(double, double, double, long, long) This variant takes the input colors as Colors...
FUNCTIONheatmapFglong(double, double, double, String, String)See heatmapFg(double, double, double, long, long) This variant takes the input colors as String...
FUNCTIONheatmapFglong(double, double, double, long, long)Convenience method for heatmapForeground(double, double, double, Color, Color) This variant tak...
FUNCTIONheatmapForegroundlong(double, double, double, Color, Color)Creates a table format encoding for the heat map at value with specified foreground color and unf...
FUNCTIONheatmapForegroundlong(double, double, double, String, String)Creates a table format encoding for the heat map at value with specified foreground color and unf...
FUNCTIONisBackgroundSelectionOverrideboolean(long)Checks if a background color should override selection.
FUNCTIONisForegroundSelectionOverrideboolean(long)Checks if a foreground color should override selection.
FUNCTIONtoLonglong(Color)Gets the formatting long of the input color.
FUNCTIONtoLonglong(String)Gets the formatting long of the input color.
FUNCTIONtoLonglong(long)Gets the formatting long of the input color.

Java

TypeNameSignatureDescription
CLASSAbstractCollectionNoneThis class provides a skeletal implementation of the Collection interface, to minimize the effor...
CLASSAbstractListNoneThis class provides a skeletal implementation of the List interface to minimize the effort requi...
CLASSAbstractMapNoneThis class provides a skeletal implementation of the Map interface, to minimize the effort requi...
CLASSAbstractMethodErrorNoneThrown when an application tries to call an abstract method. Normally, this error is caught by t...
CLASSAbstractQueueNoneThis class provides skeletal implementations of some Queue operations. The implementations in th...
CLASSAbstractSequentialListNoneThis class provides a skeletal implementation of the List interface to minimize the effort requi...
CLASSAbstractSetNoneThis class provides a skeletal implementation of the Set interface to minimize the effort requir...
CLASSAppendableNoneAn object to which char sequences and values can be appended. The Appendable interface must be ...
CLASSArithmeticExceptionNoneThrown when an exceptional arithmetic condition has occurred. For example, an integer "divide by...
CLASSArrayNoneThe Array class provides static methods to dynamically create and access Java arrays. Array pe...
CLASSArrayDequeNoneResizable-array implementation of the Deque interface. Array deques have no capacity restrictio...
CLASSArrayIndexOutOfBoundsExceptionNoneThrown to indicate that an array has been accessed with an illegal index. The index is either ne...
CLASSArrayListNoneResizable-array implementation of the List interface. Implements all optional list operations, ...
CLASSArrayStoreExceptionNoneThrown to indicate that an attempt has been made to store the wrong type of object into an array...
CLASSArraysNoneThis class contains various methods for manipulating arrays (such as sorting and searching). Thi...
CLASSAssertionErrorNoneThrown to indicate that an assertion has failed. The seven one-argument public constructors pro...
CLASSAutoCloseableNoneAn object that may hold resources (such as file or socket handles) until it is closed. The close...
CLASSBase64NoneThis class consists exclusively of static methods for obtaining encoders and decoders for the Ba...
CLASSBitSetNoneThis class implements a vector of bits that grows as needed. Each component of the bit set has a...
CLASSBooleanNoneThe Boolean class wraps a value of the primitive type boolean in an object. An object of type B...
CLASSBootstrapMethodErrorNoneThrown to indicate that an invokedynamic instruction or a dynamic constant failed to resolve its...
CLASSByteNoneThe Byte class wraps a value of primitive type byte in an object. An object of type Byte contai...
CLASSCalendarNoneThe Calendar class is an abstract class that provides methods for converting between a specific ...
CLASSCharSequenceNoneA CharSequence is a readable sequence of char values. This interface provides uniform, read-only...
CLASSCharacterNoneThe Character class wraps a value of the primitive type char in an object. An object of class C...
CLASSClassNoneInstances of the class Class represent classes and interfaces in a running Java application. An ...
CLASSClassCastExceptionNoneThrown to indicate that the code has attempted to cast an object to a subclass of which it is no...
CLASSClassCircularityErrorNoneThrown when the Java Virtual Machine detects a circularity in the superclass hierarchy of a clas...
CLASSClassFormatErrorNoneThrown when the Java Virtual Machine attempts to read a class file and determines that the file ...
CLASSClassLoaderNoneA class loader is an object that is responsible for loading classes. The class ClassLoader is an...
CLASSClassNotFoundExceptionNoneThrown when an application tries to load in a class through its string name using: The forName...
CLASSClassValueNoneLazily associate a computed value with (potentially) every type. For example, if a dynamic langu...
CLASSCloneNotSupportedExceptionNoneThrown to indicate that the clone method in class Object has been called to clone an object, but...
CLASSCloneableNoneA class implements the Cloneable interface to indicate to the Object.clone() method that it is ...
CLASSCollectionNoneThe root interface in the collection hierarchy. A collection represents a group of objects, kno...
CLASSCollectionsNoneThis class consists exclusively of static methods that operate on or return collections. It con...
CLASSComparableNoneThis interface imposes a total ordering on the objects of each class that implements it. This o...
CLASSComparatorNoneA comparison function, which imposes a total ordering on some collection of objects. Comparator...
CLASSCompilerNoneThe Compiler class is provided to support Java-to-native-code compilers and related services. By...
CLASSConcurrentHashMapNoneA hash table supporting full concurrency of retrievals and high expected concurrency for updates...
CLASSConcurrentModificationExceptionNoneThis exception may be thrown by methods that have detected concurrent modification of an object ...
CLASSCurrencyNoneRepresents a currency. Currencies are identified by their ISO 4217 currency codes. Visit the I...
CLASSDateNoneThe class Date represents a specific instant in time, with millisecond precision. Prior to JD...
CLASSDeprecatedNoneA program element annotated @Deprecated is one that programmers are discouraged from using. An e...
CLASSDequeNoneA linear collection that supports element insertion and removal at both ends. The name deque is...
CLASSDictionaryNoneThe Dictionary class is the abstract parent of any class, such as Hashtable, which maps keys to ...
CLASSDoubleNoneThe Double class wraps a value of the primitive type double in an object. An object of type Dou...
CLASSDoubleSummaryStatisticsNoneA state object for collecting statistics such as count, min, max, sum, and average. This class...
CLASSDuplicateFormatFlagsExceptionNoneUnchecked exception thrown when duplicate flags are provided in the format specifier. Unless ...
CLASSEmptyStackExceptionNoneThrown by methods in the Stack class to indicate that the stack is empty.
CLASSEnumNoneThis is the common base class of all Java language enumeration classes. More information about ...
CLASSEnumConstantNotPresentExceptionNoneThrown when an application tries to access an enum constant by name and the enum type contains n...
CLASSEnumMapNoneA specialized Map implementation for use with enum type keys. All of the keys in an enum map mu...
CLASSEnumSetNoneA specialized Set implementation for use with enum types. All of the elements in an enum set mu...
CLASSEnumerationNoneAn object that implements the Enumeration interface generates a series of elements, one at a tim...
CLASSErrorNoneAn Error is a subclass of Throwable that indicates serious problems that a reasonable applicatio...
CLASSEventListenerNoneA tagging interface that all event listener interfaces must extend.
CLASSEventListenerProxyNoneAn abstract wrapper class for an EventListener class which associates a set of additional parame...
CLASSEventObjectNoneThe root class from which all event state objects shall be derived. All Events are construct...
CLASSExceptionNoneThe class Exception and its subclasses are a form of Throwable that indicates conditions that a ...
CLASSExceptionInInitializerErrorNoneSignals that an unexpected exception has occurred in a static initializer. An ExceptionInInitial...
CLASSFloatNoneThe Float class wraps a value of primitive type float in an object. An object of type Float con...
CLASSFormatFlagsConversionMismatchExceptionNoneUnchecked exception thrown when a conversion and flag are incompatible. Unless otherwise speci...
CLASSFormattableNoneThe Formattable interface must be implemented by any class that needs to perform custom formatti...
CLASSFormattableFlagsNoneFormattableFlags are passed to the Formattable.formatTo() method and modify the output format for...
CLASSFormatterNoneAn interpreter for printf-style format strings. This class provides support for layout justific...
CLASSFormatterClosedExceptionNoneUnchecked exception thrown when the formatter has been closed. Unless otherwise specified, pas...
CLASSFunctionalInterfaceNoneAn informative annotation type used to indicate that an interface type declaration is intended t...
CLASSGregorianCalendarNoneGregorianCalendar is a concrete subclass of Calendar and provides the standard calendar system ...
CLASSHashMapNoneHash table based implementation of the Map interface. This implementation provides all of the o...
CLASSHashSetNoneThis class implements the Set interface, backed by a hash table (actually a HashMap instance). ...
CLASSHashtableNoneThis class implements a hash table, which maps keys to values. Any non-null object can be used a...
CLASSHexFormatNoneHexFormat converts between bytes and chars and hex-encoded strings which may include additional ...
CLASSIdentityHashMapNoneThis class implements the Map interface with a hash table, using reference-equality in place of ...
CLASSIllegalAccessErrorNoneThrown if an application attempts to access or modify a field, or to call a method that it does ...
CLASSIllegalAccessExceptionNoneAn IllegalAccessException is thrown when an application tries to reflectively create an instance...
CLASSIllegalArgumentExceptionNoneThrown to indicate that a method has been passed an illegal or inappropriate argument.
CLASSIllegalCallerExceptionNoneThrown to indicate that a method has been called by an inappropriate caller.
CLASSIllegalFormatCodePointExceptionNoneUnchecked exception thrown when a character with an invalid Unicode code point as defined by Cha...
CLASSIllegalFormatConversionExceptionNoneUnchecked exception thrown when the argument corresponding to the format specifier is of an inco...
CLASSIllegalFormatExceptionNoneUnchecked exception thrown when a format string contains an illegal syntax or a format specifier...
CLASSIllegalFormatFlagsExceptionNoneUnchecked exception thrown when an illegal combination flags is given. Unless otherwise specif...
CLASSIllegalFormatPrecisionExceptionNoneUnchecked exception thrown when the precision is a negative value other than -1, the conversion ...
CLASSIllegalFormatWidthExceptionNoneUnchecked exception thrown when the format width is a negative value other than -1 or is otherwi...
CLASSIllegalMonitorStateExceptionNoneThrown to indicate that a thread has attempted to wait on an object's monitor or to notify other...
CLASSIllegalStateExceptionNoneSignals that a method has been invoked at an illegal or inappropriate time. In other words, the...
CLASSIllegalThreadStateExceptionNoneThrown to indicate that a thread is not in an appropriate state for the requested operation. See...
CLASSIllformedLocaleExceptionNoneThrown by methods in Locale and Locale.Builder to indicate that an argument is not a well-formed...
CLASSIncompatibleClassChangeErrorNoneThrown when an incompatible class change has occurred to some class definition. The definition o...
CLASSIndexOutOfBoundsExceptionNoneThrown to indicate that an index of some sort (such as to an array, to a string, or to a vector)...
CLASSInheritableThreadLocalNoneThis class extends ThreadLocal to provide inheritance of values from parent thread to child thre...
CLASSInputMismatchExceptionNoneThrown by a Scanner to indicate that the token retrieved does not match the pattern for the expe...
CLASSInstantiationErrorNoneThrown when an application tries to use the Java new construct to instantiate an abstract class ...
CLASSInstantiationExceptionNoneThrown when an application tries to create an instance of a class using the newInstance method i...
CLASSIntSummaryStatisticsNoneA state object for collecting statistics such as count, min, max, sum, and average. This class...
CLASSIntegerNoneThe Integer class wraps a value of the primitive type int in an object. An object of type Intege...
CLASSInternalErrorNoneThrown to indicate some unexpected internal error has occurred in the Java Virtual Machine.
CLASSInterruptedExceptionNoneThrown when a thread is waiting, sleeping, or otherwise occupied, and the thread is interrupted,...
CLASSInvalidPropertiesFormatExceptionNoneThrown to indicate that an operation could not complete because the input did not conform to the...
CLASSIterableNoneImplementing this interface allows an object to be the target of the enhanced for statement (som...
CLASSIteratorNoneAn iterator over a collection. Iterator takes the place of Enumeration in the Java Collections ...
CLASSLayerInstantiationExceptionNoneThrown when creating a module layer fails.
CLASSLinkageErrorNoneSubclasses of LinkageError indicate that a class has some dependency on another class; however, ...
CLASSLinkedHashMapNoneHash table and linked list implementation of the Map interface, with predictable iteration order...
CLASSLinkedHashSetNoneHash table and linked list implementation of the Set interface, with predictable iteration order...
CLASSLinkedListNoneDoubly-linked list implementation of the List and Deque interfaces. Implements all optional lis...
CLASSListNoneAn ordered collection (also known as a sequence). The user of this interface has precise contro...
CLASSListIteratorNoneAn iterator for lists that allows the programmer to traverse the list in either direction, modif...
CLASSListResourceBundleNoneListResourceBundle is an abstract subclass of ResourceBundle that manages resources for a locale...
CLASSLocaleNoneA Locale object represents a specific geographical, political, or cultural region. An operation ...
CLASSLongNoneThe Long class wraps a value of the primitive type long in an object. An object of type Long co...
CLASSLongSummaryStatisticsNoneA state object for collecting statistics such as count, min, max, sum, and average. This class...
CLASSMapNoneAn object that maps keys to values. A map cannot contain duplicate keys; each key can map to at...
CLASSMathNoneThe class Math contains methods for performing basic numeric operations such as the elementary e...
CLASSMissingFormatArgumentExceptionNoneUnchecked exception thrown when there is a format specifier which does not have a corresponding ...
CLASSMissingFormatWidthExceptionNoneUnchecked exception thrown when the format width is required. Unless otherwise specified, pass...
CLASSMissingResourceExceptionNoneSignals that a resource is missing.
CLASSModuleNoneRepresents a run-time module, either named or unnamed. Named modules have a name and are const...
CLASSModuleLayerNoneA layer of modules in the Java virtual machine. A layer is created from a graph of modules in ...
CLASSNavigableMapNoneA SortedMap extended with navigation methods returning the closest matches for given search targ...
CLASSNavigableSetNoneA SortedSet extended with navigation methods reporting closest matches for given search targets....
CLASSNegativeArraySizeExceptionNoneThrown if an application tries to create an array with negative size.
CLASSNoClassDefFoundErrorNoneThrown if the Java Virtual Machine or a ClassLoader instance tries to load in the definition of ...
CLASSNoSuchElementExceptionNoneThrown by various accessor methods to indicate that the element being requested does not exist.
CLASSNoSuchFieldErrorNoneThrown if an application tries to access or modify a specified field of an object, and that obje...
CLASSNoSuchFieldExceptionNoneSignals that the class doesn't have a field of a specified name.
CLASSNoSuchMethodErrorNoneThrown if an application tries to call a specified method of a class (either static or instance)...
CLASSNoSuchMethodExceptionNoneThrown when a particular method cannot be found.
CLASSNullPointerExceptionNoneThrown when an application attempts to use null in a case where an object is required. These inc...
CLASSNumberNoneThe abstract class Number is the superclass of platform classes representing numeric values that...
CLASSNumberFormatExceptionNoneThrown to indicate that the application has attempted to convert a string to one of the numeric ...
CLASSObjectNoneClass Object is the root of the class hierarchy. Every class has Object as a superclass. All obj...
CLASSObjectsNoneThis class consists of static utility methods for operating on objects, or checking certain cond...
CLASSObservableNoneThis class represents an observable object, or "data" in the model-view paradigm. It can be subc...
CLASSObserverNoneA class can implement the Observer interface when it wants to be informed of changes in observab...
CLASSOptionalNoneA container object which may or may not contain a non-null value. If a value is present, isPrese...
CLASSOptionalDoubleNoneA container object which may or may not contain a double value. If a value is present, isPresent...
CLASSOptionalIntNoneA container object which may or may not contain an int value. If a value is present, isPresent()...
CLASSOptionalLongNoneA container object which may or may not contain a long value. If a value is present, isPresent()...
CLASSOutOfMemoryErrorNoneThrown when the Java Virtual Machine cannot allocate an object because it is out of memory, and ...
CLASSOverrideNoneIndicates that a method declaration is intended to override a method declaration in a supertype....
CLASSPackageNoneRepresents metadata about a run-time package associated with a class loader. Metadata includes a...
CLASSPrimitiveIteratorNoneA base type for primitive specializations of Iterator. Specialized subtypes are provided for in...
CLASSPriorityQueueNoneAn unbounded priority queue based on a priority heap. The elements of the priority queue are ord...
CLASSProcessNoneProcess provides control of native processes started by ProcessBuilder.start and Runtime.exec. ...
CLASSProcessBuilderNoneThis class is used to create operating system processes. Each ProcessBuilder instance manages a...
CLASSProcessHandleNoneProcessHandle identifies and provides control of native processes. Each individual process can b...
CLASSPropertiesNoneThe Properties class represents a persistent set of properties. The Properties can be saved to a...
CLASSPropertyPermissionNoneThis class is for property permissions. The name is the name of the property ("java.home", "...
CLASSPropertyResourceBundleNonePropertyResourceBundle is a concrete subclass of ResourceBundle that manages resources for a loc...
CLASSQueueNoneA collection designed for holding elements prior to processing. Besides basic Collection operati...
CLASSRandomNoneAn instance of this class is used to generate a stream of pseudorandom numbers; its period is on...
CLASSRandomAccessNoneMarker interface used by List implementations to indicate that they support fast (generally cons...
CLASSReadableNoneA Readable is a source of characters. Characters from a Readable are made available to callers o...
CLASSRecordNoneThis is the common base class of all Java language record classes. More information about recor...
CLASSReflectiveOperationExceptionNoneCommon superclass of exceptions thrown by reflective operations in core reflection.
CLASSResourceBundleNoneResource bundles contain locale-specific objects. When your program needs a locale-specific res...
CLASSRunnableNoneThe Runnable interface should be implemented by any class whose instances are intended to be exe...
CLASSRuntimeNoneEvery Java application has a single instance of class Runtime that allows the application to int...
CLASSRuntimeExceptionNoneRuntimeException is the superclass of those exceptions that can be thrown during the normal oper...
CLASSRuntimePermissionNoneThis class is for runtime permissions. A RuntimePermission contains a name (also referred to as ...
CLASSSafeVarargsNoneA programmer assertion that the body of the annotated method or constructor does not perform pot...
CLASSScannerNoneA simple text scanner which can parse primitive types and strings using regular expressions. A...
CLASSSecurityExceptionNoneThrown by the security manager to indicate a security violation.
CLASSSecurityManagerNoneThe security manager is a class that allows applications to implement a security policy. It allo...
CLASSServiceConfigurationErrorNoneError thrown when something goes wrong while locating, loading, or instantiating a service provi...
CLASSServiceLoaderNoneA facility to load implementations of a service. A service is a well-known interface or class ...
CLASSSetNoneA collection that contains no duplicate elements. More formally, sets contain no pair of elemen...
CLASSShortNoneThe Short class wraps a value of primitive type short in an object. An object of type Short co...
CLASSSimpleTimeZoneNoneSimpleTimeZone is a concrete subclass of TimeZone that represents a time zone for use with a Gre...
CLASSSortedMapNoneA Map that further provides a total ordering on its keys. The map is ordered according to the na...
CLASSSortedSetNoneA Set that further provides a total ordering on its elements. The elements are ordered using the...
CLASSSpliteratorNoneAn object for traversing and partitioning elements of a source. The source of elements covered ...
CLASSSpliteratorsNoneStatic classes and methods for operating on or creating instances of Spliterator and its primiti...
CLASSSplittableRandomNoneA generator of uniform pseudorandom values (with period 264) applicable for use in (among other ...
CLASSStackNoneThe Stack class represents a last-in-first-out (LIFO) stack of objects. It extends class Vector ...
CLASSStackOverflowErrorNoneThrown when a stack overflow occurs because an application recurses too deeply.
CLASSStackTraceElementNoneAn element in a stack trace, as returned by Throwable.getStackTrace(). Each element represents a...
CLASSStackWalkerNoneA stack walker. The walk method opens a sequential stream of StackFrames for the current thre...
CLASSStrictMathNoneThe class StrictMath contains methods for performing basic numeric operations such as the elemen...
CLASSStringNoneThe String class represents character strings. All string literals in Java programs, such as "ab...
CLASSStringBufferNoneA thread-safe, mutable sequence of characters. A string buffer is like a String, but can be modi...
CLASSStringBuilderNoneA mutable sequence of characters. This class provides an API compatible with StringBuffer, but ...
CLASSStringIndexOutOfBoundsExceptionNoneThrown by String methods to indicate that an index is either negative or greater than the size o...
CLASSStringJoinerNoneStringJoiner is used to construct a sequence of characters separated by a delimiter and optional...
CLASSStringTokenizerNoneThe string tokenizer class allows an application to break a string into tokens. The tokenization...
CLASSSuppressWarningsNoneIndicates that the named compiler warnings should be suppressed in the annotated element (and in...
CLASSSystemNoneThe System class contains several useful class fields and methods. It cannot be instantiated. ...
CLASSThreadNoneA thread is a thread of execution in a program. The Java Virtual Machine allows an application t...
CLASSThreadDeathNoneAn instance of ThreadDeath is thrown in the victim thread when the (deprecated) Thread.stop() me...
CLASSThreadGroupNoneA thread group represents a set of threads. In addition, a thread group can also include other t...
CLASSThreadLocalNoneThis class provides thread-local variables. These variables differ from their normal counterpar...
CLASSThrowableNoneThe Throwable class is the superclass of all errors and exceptions in the Java language. Only ob...
CLASSTimeZoneNoneTimeZone represents a time zone offset, and also figures out daylight savings. Typically, yo...
CLASSTimerNoneA facility for threads to schedule tasks for future execution in a background thread. Tasks may...
CLASSTimerTaskNoneA task that can be scheduled for one-time or repeated execution by a Timer. A timer task is no...
CLASSTooManyListenersExceptionNoneThe TooManyListenersException Exception is used as part of the Java Event model to annotate ...
CLASSTreeMapNoneA Red-Black tree based NavigableMap implementation. The map is sorted according to the natural ...
CLASSTreeSetNoneA NavigableSet implementation based on a TreeMap. The elements are ordered using their natural ...
CLASSTypeNotPresentExceptionNoneThrown when an application tries to access a type using a string representing the type's name, b...
CLASSUUIDNoneA class that represents an immutable universally unique identifier (UUID). A UUID represents a 1...
CLASSUnknownErrorNoneThrown when an unknown but serious exception has occurred in the Java Virtual Machine.
CLASSUnknownFormatConversionExceptionNoneUnchecked exception thrown when an unknown conversion is given. Unless otherwise specified, pa...
CLASSUnknownFormatFlagsExceptionNoneUnchecked exception thrown when an unknown flag is given. Unless otherwise specified, passing ...
CLASSUnsatisfiedLinkErrorNoneThrown if the Java Virtual Machine cannot find an appropriate native-language definition of a me...
CLASSUnsupportedClassVersionErrorNoneThrown when the Java Virtual Machine attempts to read a class file and determines that the major...
CLASSUnsupportedOperationExceptionNoneThrown to indicate that the requested operation is not supported. This class is a member of the...
CLASSVectorNoneThe Vector class implements a growable array of objects. Like an array, it contains components t...
CLASSVerifyErrorNoneThrown when the "verifier" detects that a class file, though well formed, contains some sort of ...
CLASSVirtualMachineErrorNoneThrown to indicate that the Java Virtual Machine is broken or has run out of resources necessary...
CLASSVoidNoneThe Void class is an uninstantiable placeholder class to hold a reference to the Class object re...
CLASSWeakHashMapNoneHash table based implementation of the Map interface, with weak keys. An entry in a WeakHashMap...

Logic

TypeNameSignatureDescription
FUNCTIONandBoolean(Boolean...)Ands all of the values in the array together.
FUNCTIONandBoolean(Boolean[], Boolean)Ands all of the values in the array together.
FUNCTIONandBoolean(ObjectVector)Ands all of the values in the array together.
FUNCTIONandBoolean(ObjectVector, Boolean)Ands all of the values in the array together.
FUNCTIONandBoolean(boolean...)Ands all of the values in the array together.
FUNCTIONnotBoolean[](Boolean...)Not of all values in an array.
FUNCTIONnotBoolean[](boolean...)Not of all values in an array.
FUNCTIONorBoolean(Boolean...)Ors all of the values in the array together.
FUNCTIONorBoolean(Boolean[], Boolean)Ors all of the values in the array together.
FUNCTIONorBoolean(boolean...)Ors all of the values in the array together.

Math

TypeNameSignatureDescription
FUNCTIONabsbyte(byte)Returns the absolute value.
FUNCTIONabsdouble(double)Returns the absolute value.
FUNCTIONabsfloat(float)Returns the absolute value.
FUNCTIONabsint(int)Returns the absolute value.
FUNCTIONabslong(long)Returns the absolute value.
FUNCTIONabsshort(short)Returns the absolute value.
FUNCTIONabsAvgdouble(ByteVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Byte[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(DoubleVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Double[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(FloatVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Float[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(IntVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Integer[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(LongVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Long[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(ShortVector)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(Short[])Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(byte...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(double...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(float...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(int...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(long...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONabsAvgdouble(short...)Returns the mean of the absolute values of values. Null values are excluded.
FUNCTIONacosdouble(byte)Returns the arc cosine.
FUNCTIONacosdouble(double)Returns the arc cosine.
FUNCTIONacosdouble(float)Returns the arc cosine.
FUNCTIONacosdouble(int)Returns the arc cosine.
FUNCTIONacosdouble(long)Returns the arc cosine.
FUNCTIONacosdouble(short)Returns the arc cosine.
FUNCTIONasindouble(byte)Returns the arc sine.
FUNCTIONasindouble(double)Returns the arc sine.
FUNCTIONasindouble(float)Returns the arc sine.
FUNCTIONasindouble(int)Returns the arc sine.
FUNCTIONasindouble(long)Returns the arc sine.
FUNCTIONasindouble(short)Returns the arc sine.
FUNCTIONatandouble(byte)Returns the arc tangent.
FUNCTIONatandouble(double)Returns the arc tangent.
FUNCTIONatandouble(float)Returns the arc tangent.
FUNCTIONatandouble(int)Returns the arc tangent.
FUNCTIONatandouble(long)Returns the arc tangent.
FUNCTIONatandouble(short)Returns the arc tangent.
FUNCTIONavgdouble(ByteVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Byte[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(DoubleVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Double[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(FloatVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Float[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(IntVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Integer[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(LongVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Long[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(ShortVector)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(Short[])Returns the mean. Null values are excluded.
FUNCTIONavgdouble(byte...)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(double...)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(float...)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(int...)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(long...)Returns the mean. Null values are excluded.
FUNCTIONavgdouble(short...)Returns the mean. Null values are excluded.
FUNCTIONceildouble(byte)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONceildouble(double)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONceildouble(float)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONceildouble(int)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONceildouble(long)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONceildouble(short)Returns the ceiling. This is the smallest integer, which is greater than or equal to the value.
FUNCTIONclampbyte(byte, byte, byte)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONclampdouble(double, double, double)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONclampfloat(float, float, float)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONclampint(int, int, int)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONclamplong(long, long, long)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONclampshort(short, short, short)Constrains the value to be on the [min,max] range. If the value is less than min, min is returne...
FUNCTIONcontainsNonFiniteboolean(Byte[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(Double[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(Float[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(Integer[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(Long[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(Short[])Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(byte...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(double...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(float...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(int...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(long...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcontainsNonFiniteboolean(short...)Returns true if the values contains any non-finite value, where "finite" is defined as not infin...
FUNCTIONcordouble(ByteVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ByteVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(DoubleVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(FloatVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(IntVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(LongVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(ShortVector, short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(byte[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(double[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(float[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(int[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(long[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], ByteVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], DoubleVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], FloatVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], IntVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], LongVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], ShortVector)Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], byte[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], double[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], float[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], int[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], long[])Returns the correlation. Null values are excluded.
FUNCTIONcordouble(short[], short[])Returns the correlation. Null values are excluded.
FUNCTIONcosdouble(byte)Returns the cosine.
FUNCTIONcosdouble(double)Returns the cosine.
FUNCTIONcosdouble(float)Returns the cosine.
FUNCTIONcosdouble(int)Returns the cosine.
FUNCTIONcosdouble(long)Returns the cosine.
FUNCTIONcosdouble(short)Returns the cosine.
FUNCTIONcountNeglong(ByteVector)Counts the number of negative values.
FUNCTIONcountNeglong(Byte[])Counts the number of negative values.
FUNCTIONcountNeglong(DoubleVector)Counts the number of negative values.
FUNCTIONcountNeglong(Double[])Counts the number of negative values.
FUNCTIONcountNeglong(FloatVector)Counts the number of negative values.
FUNCTIONcountNeglong(Float[])Counts the number of negative values.
FUNCTIONcountNeglong(IntVector)Counts the number of negative values.
FUNCTIONcountNeglong(Integer[])Counts the number of negative values.
FUNCTIONcountNeglong(LongVector)Counts the number of negative values.
FUNCTIONcountNeglong(Long[])Counts the number of negative values.
FUNCTIONcountNeglong(ShortVector)Counts the number of negative values.
FUNCTIONcountNeglong(Short[])Counts the number of negative values.
FUNCTIONcountNeglong(byte...)Counts the number of negative values.
FUNCTIONcountNeglong(double...)Counts the number of negative values.
FUNCTIONcountNeglong(float...)Counts the number of negative values.
FUNCTIONcountNeglong(int...)Counts the number of negative values.
FUNCTIONcountNeglong(long...)Counts the number of negative values.
FUNCTIONcountNeglong(short...)Counts the number of negative values.
FUNCTIONcountPoslong(ByteVector)Counts the number of positive values.
FUNCTIONcountPoslong(Byte[])Counts the number of positive values.
FUNCTIONcountPoslong(DoubleVector)Counts the number of positive values.
FUNCTIONcountPoslong(Double[])Counts the number of positive values.
FUNCTIONcountPoslong(FloatVector)Counts the number of positive values.
FUNCTIONcountPoslong(Float[])Counts the number of positive values.
FUNCTIONcountPoslong(IntVector)Counts the number of positive values.
FUNCTIONcountPoslong(Integer[])Counts the number of positive values.
FUNCTIONcountPoslong(LongVector)Counts the number of positive values.
FUNCTIONcountPoslong(Long[])Counts the number of positive values.
FUNCTIONcountPoslong(ShortVector)Counts the number of positive values.
FUNCTIONcountPoslong(Short[])Counts the number of positive values.
FUNCTIONcountPoslong(byte...)Counts the number of positive values.
FUNCTIONcountPoslong(double...)Counts the number of positive values.
FUNCTIONcountPoslong(float...)Counts the number of positive values.
FUNCTIONcountPoslong(int...)Counts the number of positive values.
FUNCTIONcountPoslong(long...)Counts the number of positive values.
FUNCTIONcountPoslong(short...)Counts the number of positive values.
FUNCTIONcountZerolong(ByteVector)Counts the number of zero values.
FUNCTIONcountZerolong(Byte[])Counts the number of zero values.
FUNCTIONcountZerolong(DoubleVector)Counts the number of zero values.
FUNCTIONcountZerolong(Double[])Counts the number of zero values.
FUNCTIONcountZerolong(FloatVector)Counts the number of zero values.
FUNCTIONcountZerolong(Float[])Counts the number of zero values.
FUNCTIONcountZerolong(IntVector)Counts the number of zero values.
FUNCTIONcountZerolong(Integer[])Counts the number of zero values.
FUNCTIONcountZerolong(LongVector)Counts the number of zero values.
FUNCTIONcountZerolong(Long[])Counts the number of zero values.
FUNCTIONcountZerolong(ShortVector)Counts the number of zero values.
FUNCTIONcountZerolong(Short[])Counts the number of zero values.
FUNCTIONcountZerolong(byte...)Counts the number of zero values.
FUNCTIONcountZerolong(double...)Counts the number of zero values.
FUNCTIONcountZerolong(float...)Counts the number of zero values.
FUNCTIONcountZerolong(int...)Counts the number of zero values.
FUNCTIONcountZerolong(long...)Counts the number of zero values.
FUNCTIONcountZerolong(short...)Counts the number of zero values.
FUNCTIONcovdouble(ByteVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ByteVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(DoubleVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(FloatVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(IntVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(LongVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(ShortVector, short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(byte[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(double[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(float[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(int[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(long[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], ByteVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], DoubleVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], FloatVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], IntVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], LongVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], ShortVector)Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], byte[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], double[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], float[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], int[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], long[])Returns the covariance. Null values are excluded.
FUNCTIONcovdouble(short[], short[])Returns the covariance. Null values are excluded.
FUNCTIONcummaxbyte[](ByteVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxbyte[](Byte[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxbyte[](byte...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxdouble[](DoubleVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxdouble[](Double[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxdouble[](double...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxfloat[](FloatVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxfloat[](Float[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxfloat[](float...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxint[](IntVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxint[](Integer[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxint[](int...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxlong[](LongVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxlong[](Long[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxlong[](long...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxshort[](ShortVector)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxshort[](Short[])Returns the cumulative maximum. Null values are excluded.
FUNCTIONcummaxshort[](short...)Returns the cumulative maximum. Null values are excluded.
FUNCTIONcumminbyte[](ByteVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminbyte[](Byte[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminbyte[](byte...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcummindouble[](DoubleVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcummindouble[](Double[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcummindouble[](double...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminfloat[](FloatVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminfloat[](Float[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminfloat[](float...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminint[](IntVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminint[](Integer[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminint[](int...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminlong[](LongVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminlong[](Long[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminlong[](long...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminshort[](ShortVector)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminshort[](Short[])Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumminshort[](short...)Returns the cumulative minimum. Null values are excluded.
FUNCTIONcumprodbyte[](ByteVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodbyte[](Byte[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodbyte[](byte...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumproddouble[](DoubleVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumproddouble[](Double[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumproddouble[](double...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodfloat[](FloatVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodfloat[](Float[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodfloat[](float...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodint[](IntVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodint[](Integer[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodint[](int...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodlong[](LongVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodlong[](Long[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodlong[](long...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodshort[](ShortVector)Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodshort[](Short[])Returns the cumulative product. Null values are excluded.
FUNCTIONcumprodshort[](short...)Returns the cumulative product. Null values are excluded.
FUNCTIONcumsumbyte[](ByteVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumbyte[](Byte[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumbyte[](byte...)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumdouble[](DoubleVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumdouble[](Double[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumdouble[](double...)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumfloat[](FloatVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumfloat[](Float[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumfloat[](float...)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumint[](IntVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumint[](Integer[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumint[](int...)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumlong[](LongVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumlong[](Long[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumlong[](long...)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumshort[](ShortVector)Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumshort[](Short[])Returns the cumulative sum. Null values are excluded.
FUNCTIONcumsumshort[](short...)Returns the cumulative sum. Null values are excluded.
FUNCTIONexpdouble(byte)Returns Euler's number e raised to a power.
FUNCTIONexpdouble(double)Returns Euler's number e raised to a power.
FUNCTIONexpdouble(float)Returns Euler's number e raised to a power.
FUNCTIONexpdouble(int)Returns Euler's number e raised to a power.
FUNCTIONexpdouble(long)Returns Euler's number e raised to a power.
FUNCTIONexpdouble(short)Returns Euler's number e raised to a power.
FUNCTIONfloordouble(byte)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONfloordouble(double)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONfloordouble(float)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONfloordouble(int)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONfloordouble(long)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONfloordouble(short)Returns the floor. This is the largest integer, which is less than or equal to the value.
FUNCTIONindexOfMaxlong(ByteVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Byte[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(DoubleVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Double[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(FloatVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Float[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(IntVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Integer[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(LongVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Long[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(ShortVector)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(Short[])Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(byte...)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(double...)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(float...)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(int...)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(long...)Returns the index of the maximum value.
FUNCTIONindexOfMaxlong(short...)Returns the index of the maximum value.
FUNCTIONindexOfMaxObjlong(Comparable...)Returns the index of the maximum value.
FUNCTIONindexOfMaxObjlong(ObjectVector)Returns the index of the maximum value.
FUNCTIONindexOfMinlong(ByteVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Byte[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(DoubleVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Double[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(FloatVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Float[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(IntVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Integer[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(LongVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Long[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(ShortVector)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(Short[])Returns the index of the minimum value.
FUNCTIONindexOfMinlong(byte...)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(double...)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(float...)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(int...)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(long...)Returns the index of the minimum value.
FUNCTIONindexOfMinlong(short...)Returns the index of the minimum value.
FUNCTIONindexOfMinObjlong(Comparable...)Returns the index of the minimum value.
FUNCTIONindexOfMinObjlong(ObjectVector)Returns the index of the minimum value.
FUNCTIONisFiniteboolean(Byte)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(Double)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(Float)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(Integer)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(Long)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(Short)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(byte)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(double)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(float)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(int)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(long)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisFiniteboolean(short)Returns true if the value is finite, where "finite" is defined as not infinite, not NaN, and not ...
FUNCTIONisInfboolean(Byte)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(Double)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(Float)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(Integer)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(Long)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(Short)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(byte)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(double)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(float)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(int)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(long)Returns true if the value is infinite and false otherwise.
FUNCTIONisInfboolean(short)Returns true if the value is infinite and false otherwise.
FUNCTIONisNaNboolean(Byte)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(Double)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(Float)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(Integer)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(Long)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(Short)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(byte)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(double)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(float)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(int)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(long)Returns true if the value is NaN and false otherwise.
FUNCTIONisNaNboolean(short)Returns true if the value is NaN and false otherwise.
FUNCTIONlogdouble(byte)Returns the natural logarithm (base e).
FUNCTIONlogdouble(double)Returns the natural logarithm (base e).
FUNCTIONlogdouble(float)Returns the natural logarithm (base e).
FUNCTIONlogdouble(int)Returns the natural logarithm (base e).
FUNCTIONlogdouble(long)Returns the natural logarithm (base e).
FUNCTIONlogdouble(short)Returns the natural logarithm (base e).
FUNCTIONlowerBinbyte(byte, byte)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinbyte(byte, byte, byte)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBindouble(double, double)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBindouble(double, double, double)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinfloat(float, float)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinfloat(float, float, float)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinint(int, int)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinint(int, int, int)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinlong(long, long)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinlong(long, long, long)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinshort(short, short)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONlowerBinshort(short, short, short)Returns the lower bound of the bin containing the value. The lower bound of the bin containing ...
FUNCTIONmaxbyte(ByteVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxbyte(Byte[])Returns the maximum. Null values are excluded.
FUNCTIONmaxbyte(byte...)Returns the maximum. Null values are excluded.
FUNCTIONmaxdouble(DoubleVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxdouble(Double[])Returns the maximum. Null values are excluded.
FUNCTIONmaxdouble(double...)Returns the maximum. Null values are excluded.
FUNCTIONmaxfloat(FloatVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxfloat(Float[])Returns the maximum. Null values are excluded.
FUNCTIONmaxfloat(float...)Returns the maximum. Null values are excluded.
FUNCTIONmaxint(IntVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxint(Integer[])Returns the maximum. Null values are excluded.
FUNCTIONmaxint(int...)Returns the maximum. Null values are excluded.
FUNCTIONmaxlong(LongVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxlong(Long[])Returns the maximum. Null values are excluded.
FUNCTIONmaxlong(long...)Returns the maximum. Null values are excluded.
FUNCTIONmaxshort(ShortVector)Returns the maximum. Null values are excluded.
FUNCTIONmaxshort(Short[])Returns the maximum. Null values are excluded.
FUNCTIONmaxshort(short...)Returns the maximum. Null values are excluded.
FUNCTIONmaxObjComparable(Comparable...)Returns the maximum. Null values are excluded.
FUNCTIONmaxObjComparable(ObjectVector)Returns the maximum. Null values are excluded.
FUNCTIONmediandouble(ByteVector)Returns the median.
FUNCTIONmediandouble(Byte[])Returns the median.
FUNCTIONmediandouble(DoubleVector)Returns the median.
FUNCTIONmediandouble(Double[])Returns the median.
FUNCTIONmediandouble(FloatVector)Returns the median.
FUNCTIONmediandouble(Float[])Returns the median.
FUNCTIONmediandouble(IntVector)Returns the median.
FUNCTIONmediandouble(Integer[])Returns the median.
FUNCTIONmediandouble(LongVector)Returns the median.
FUNCTIONmediandouble(Long[])Returns the median.
FUNCTIONmediandouble(ShortVector)Returns the median.
FUNCTIONmediandouble(Short[])Returns the median.
FUNCTIONmediandouble(byte...)Returns the median.
FUNCTIONmediandouble(double...)Returns the median.
FUNCTIONmediandouble(float...)Returns the median.
FUNCTIONmediandouble(int...)Returns the median.
FUNCTIONmediandouble(long...)Returns the median.
FUNCTIONmediandouble(short...)Returns the median.
FUNCTIONminbyte(ByteVector)Returns the minimum. Null values are excluded.
FUNCTIONminbyte(Byte[])Returns the minimum. Null values are excluded.
FUNCTIONminbyte(byte...)Returns the minimum. Null values are excluded.
FUNCTIONmindouble(DoubleVector)Returns the minimum. Null values are excluded.
FUNCTIONmindouble(Double[])Returns the minimum. Null values are excluded.
FUNCTIONmindouble(double...)Returns the minimum. Null values are excluded.
FUNCTIONminfloat(FloatVector)Returns the minimum. Null values are excluded.
FUNCTIONminfloat(Float[])Returns the minimum. Null values are excluded.
FUNCTIONminfloat(float...)Returns the minimum. Null values are excluded.
FUNCTIONminint(IntVector)Returns the minimum. Null values are excluded.
FUNCTIONminint(Integer[])Returns the minimum. Null values are excluded.
FUNCTIONminint(int...)Returns the minimum. Null values are excluded.
FUNCTIONminlong(LongVector)Returns the minimum. Null values are excluded.
FUNCTIONminlong(Long[])Returns the minimum. Null values are excluded.
FUNCTIONminlong(long...)Returns the minimum. Null values are excluded.
FUNCTIONminshort(ShortVector)Returns the minimum. Null values are excluded.
FUNCTIONminshort(Short[])Returns the minimum. Null values are excluded.
FUNCTIONminshort(short...)Returns the minimum. Null values are excluded.
FUNCTIONminObjComparable(Comparable...)Returns the minimum. Null values are excluded.
FUNCTIONminObjComparable(ObjectVector)Returns the minimum. Null values are excluded.
FUNCTIONpercentiledouble(double, ByteVector)Returns the percentile.
FUNCTIONpercentiledouble(double, DoubleVector)Returns the percentile.
FUNCTIONpercentiledouble(double, FloatVector)Returns the percentile.
FUNCTIONpercentiledouble(double, IntVector)Returns the percentile.
FUNCTIONpercentiledouble(double, LongVector)Returns the percentile.
FUNCTIONpercentiledouble(double, ShortVector)Returns the percentile.
FUNCTIONpercentiledouble(double, byte...)Returns the percentile.
FUNCTIONpercentiledouble(double, double...)Returns the percentile.
FUNCTIONpercentiledouble(double, float...)Returns the percentile.
FUNCTIONpercentiledouble(double, int...)Returns the percentile.
FUNCTIONpercentiledouble(double, long...)Returns the percentile.
FUNCTIONpercentiledouble(double, short...)Returns the percentile.
FUNCTIONpowdouble(byte, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(byte, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(byte, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(byte, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(byte, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(byte, short)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(double, short)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(float, short)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(int, short)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(long, short)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, byte)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, double)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, float)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, int)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, long)Returns the value of the first argument raised to the second argument.
FUNCTIONpowdouble(short, short)Returns the value of the first argument raised to the second argument.
FUNCTIONproductbyte(ByteVector)Returns the product. Null values are excluded.
FUNCTIONproductbyte(byte...)Returns the product. Null values are excluded.
FUNCTIONproductdouble(DoubleVector)Returns the product. Null values are excluded.
FUNCTIONproductdouble(double...)Returns the product. Null values are excluded.
FUNCTIONproductfloat(FloatVector)Returns the product. Null values are excluded.
FUNCTIONproductfloat(float...)Returns the product. Null values are excluded.
FUNCTIONproductint(IntVector)Returns the product. Null values are excluded.
FUNCTIONproductint(int...)Returns the product. Null values are excluded.
FUNCTIONproductlong(LongVector)Returns the product. Null values are excluded.
FUNCTIONproductlong(long...)Returns the product. Null values are excluded.
FUNCTIONproductshort(ShortVector)Returns the product. Null values are excluded.
FUNCTIONproductshort(short...)Returns the product. Null values are excluded.
FUNCTIONrandomdouble()Returns a uniform random number between 0.0 (inclusive) and 1.0 (exclusive).
FUNCTIONrandomBoolboolean()Returns a random boolean.
FUNCTIONrandomBoolboolean[](int)Returns an array of random booleans.
FUNCTIONrandomDoubledouble(double, double)Returns a uniform random number.
FUNCTIONrandomDoubledouble[](double, double, int)Returns an array of uniform random numbers.
FUNCTIONrandomFloatfloat(float, float)Returns a uniform random number.
FUNCTIONrandomFloatfloat[](float, float, int)Returns an array of uniform random numbers.
FUNCTIONrandomGaussiandouble(double, double)Returns a Gaussian random number.
FUNCTIONrandomGaussiandouble[](double, double, int)Returns an array of Gaussian random numbers.
FUNCTIONrandomIntint(int, int)Returns a uniform random number.
FUNCTIONrandomIntint[](int, int, int)Returns an array of uniform random numbers.
FUNCTIONrandomLonglong(long, long)Returns a uniform random number.
FUNCTIONrandomLonglong[](long, long, int)Returns an array of uniform random numbers.
FUNCTIONreplaceIfNaNdouble(double, double)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNaNdouble[](DoubleVector, double)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNaNdouble[](double[], double)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNaNfloat(float, float)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNaNfloat[](FloatVector, float)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNaNfloat[](float[], float)Replaces values that are NaN with a specified value.
FUNCTIONreplaceIfNonFinitedouble(double, double)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNonFinitedouble[](DoubleVector, double)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNonFinitedouble[](double[], double)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNonFinitefloat(float, float)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNonFinitefloat[](FloatVector, float)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNonFinitefloat[](float[], float)Replaces values that are not finite according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNdouble(double, double)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNdouble[](DoubleVector, double)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNdouble[](double[], double)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNfloat(float, float)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNfloat[](FloatVector, float)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONreplaceIfNullNaNfloat[](float[], float)Replaces values that are NaN or null according to Deephaven convention with a specified value.
FUNCTIONrintdouble(byte)Returns the integer closest to the input value.
FUNCTIONrintdouble(double)Returns the integer closest to the input value.
FUNCTIONrintdouble(float)Returns the integer closest to the input value.
FUNCTIONrintdouble(int)Returns the integer closest to the input value.
FUNCTIONrintdouble(long)Returns the integer closest to the input value.
FUNCTIONrintdouble(short)Returns the integer closest to the input value.
FUNCTIONroundlong(byte)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONroundlong(double)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONroundlong(float)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONroundlong(int)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONroundlong(long)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONroundlong(short)Returns the closest integer to the argument. If the argument is NaN, the result is 0. If the ar...
FUNCTIONsequencebyte[](byte, byte, byte)Returns a sequence of values.
FUNCTIONsequencedouble[](double, double, double)Returns a sequence of values.
FUNCTIONsequencefloat[](float, float, float)Returns a sequence of values.
FUNCTIONsequenceint[](int, int, int)Returns a sequence of values.
FUNCTIONsequencelong[](long, long, long)Returns a sequence of values.
FUNCTIONsequenceshort[](short, short, short)Returns a sequence of values.
FUNCTIONsignumint(byte)Returns the signum function.
FUNCTIONsignumint(double)Returns the signum function.
FUNCTIONsignumint(float)Returns the signum function.
FUNCTIONsignumint(int)Returns the signum function.
FUNCTIONsignumint(long)Returns the signum function.
FUNCTIONsignumint(short)Returns the signum function.
FUNCTIONsindouble(byte)Returns the sine.
FUNCTIONsindouble(double)Returns the sine.
FUNCTIONsindouble(float)Returns the sine.
FUNCTIONsindouble(int)Returns the sine.
FUNCTIONsindouble(long)Returns the sine.
FUNCTIONsindouble(short)Returns the sine.
FUNCTIONsqrtdouble(byte)Returns the square root.
FUNCTIONsqrtdouble(double)Returns the square root.
FUNCTIONsqrtdouble(float)Returns the square root.
FUNCTIONsqrtdouble(int)Returns the square root.
FUNCTIONsqrtdouble(long)Returns the square root.
FUNCTIONsqrtdouble(short)Returns the square root.
FUNCTIONstddouble(ByteVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Byte[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(DoubleVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Double[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(FloatVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Float[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(IntVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Integer[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(LongVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Long[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(ShortVector)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(Short[])Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(byte...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(double...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(float...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(int...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(long...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstddouble(short...)Returns the sample standard deviation. Null values are excluded. Sample standard deviation is ...
FUNCTIONstedouble(ByteVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Byte[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(DoubleVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Double[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(FloatVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Float[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(IntVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Integer[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(LongVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Long[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(ShortVector)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(Short[])Returns the standard error. Null values are excluded.
FUNCTIONstedouble(byte...)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(double...)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(float...)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(int...)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(long...)Returns the standard error. Null values are excluded.
FUNCTIONstedouble(short...)Returns the standard error. Null values are excluded.
FUNCTIONsumbyte(ByteVector)Returns the sum. Null values are excluded.
FUNCTIONsumbyte(byte...)Returns the sum. Null values are excluded.
FUNCTIONsumdouble(DoubleVector)Returns the sum. Null values are excluded.
FUNCTIONsumdouble(double...)Returns the sum. Null values are excluded.
FUNCTIONsumfloat(FloatVector)Returns the sum. Null values are excluded.
FUNCTIONsumfloat(float...)Returns the sum. Null values are excluded.
FUNCTIONsumint(IntVector)Returns the sum. Null values are excluded.
FUNCTIONsumint(int...)Returns the sum. Null values are excluded.
FUNCTIONsumlong(LongVector)Returns the sum. Null values are excluded.
FUNCTIONsumlong(long...)Returns the sum. Null values are excluded.
FUNCTIONsumshort(ShortVector)Returns the sum. Null values are excluded.
FUNCTIONsumshort(short...)Returns the sum. Null values are excluded.
FUNCTIONtandouble(byte)Returns the tangent.
FUNCTIONtandouble(double)Returns the tangent.
FUNCTIONtandouble(float)Returns the tangent.
FUNCTIONtandouble(int)Returns the tangent.
FUNCTIONtandouble(long)Returns the tangent.
FUNCTIONtandouble(short)Returns the tangent.
FUNCTIONtstatdouble(ByteVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Byte[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(DoubleVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Double[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(FloatVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Float[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(IntVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Integer[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(LongVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Long[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(ShortVector)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(Short[])Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(byte...)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(double...)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(float...)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(int...)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(long...)Returns the t-statistic. Null values are excluded.
FUNCTIONtstatdouble(short...)Returns the t-statistic. Null values are excluded.
FUNCTIONupperBinbyte(byte, byte)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinbyte(byte, byte, byte)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBindouble(double, double)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBindouble(double, double, double)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinfloat(float, float)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinfloat(float, float, float)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinint(int, int)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinint(int, int, int)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinlong(long, long)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinlong(long, long, long)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinshort(short, short)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONupperBinshort(short, short, short)Returns the upper bound of the bin containing the value. The upper bound of the bin containing ...
FUNCTIONvardouble(ByteVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Byte[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(DoubleVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Double[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(FloatVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Float[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(IntVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Integer[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(LongVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Long[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(ShortVector)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(Short[])Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(byte...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(double...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(float...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(int...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(long...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONvardouble(short...)Returns the sample variance. Null values are excluded. Sample variance is computed using Besse...
FUNCTIONwavgdouble(ByteVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ByteVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(DoubleVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(FloatVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(IntVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(LongVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(ShortVector, short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(byte[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(double[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(float[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(int[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(long[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], ByteVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], DoubleVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], FloatVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], IntVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], LongVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], ShortVector)Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], byte[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], double[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], float[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], int[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], long[])Returns the weighted average. Null values are excluded.
FUNCTIONwavgdouble(short[], short[])Returns the weighted average. Null values are excluded.
FUNCTIONwstddouble(ByteVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ByteVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(DoubleVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(FloatVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(IntVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(LongVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(ShortVector, short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(byte[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(double[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(float[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(int[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(long[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], ByteVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], DoubleVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], FloatVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], IntVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], LongVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], ShortVector)Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], byte[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], double[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], float[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], int[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], long[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstddouble(short[], short[])Returns the weighted sample standard deviation. Null values are excluded. Weighted sample stan...
FUNCTIONwstedouble(ByteVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ByteVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(DoubleVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(FloatVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(IntVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(LongVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(ShortVector, short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(byte[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(double[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(float[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(int[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(long[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], ByteVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], DoubleVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], FloatVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], IntVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], LongVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], ShortVector)Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], byte[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], double[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], float[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], int[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], long[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwstedouble(short[], short[])Returns the weighted standard error. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ByteVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(DoubleVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(FloatVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(IntVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(LongVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(ShortVector, short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(byte[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(double[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(float[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(int[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(long[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], ByteVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], DoubleVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], FloatVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], IntVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], LongVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], ShortVector)Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], byte[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], double[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], float[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], int[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], long[])Returns the weighted sum. Null values are excluded.
FUNCTIONwsumdouble(short[], short[])Returns the weighted sum. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ByteVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(DoubleVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(FloatVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(IntVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(LongVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(ShortVector, short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(byte[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(double[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(float[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(int[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(long[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], ByteVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], DoubleVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], FloatVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], IntVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], LongVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], ShortVector)Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], byte[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], double[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], float[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], int[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], long[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwtstatdouble(short[], short[])Returns the weighted t-statistic. Null values are excluded.
FUNCTIONwvardouble(ByteVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ByteVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(DoubleVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(FloatVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(IntVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(LongVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, ByteVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, DoubleVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, FloatVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, IntVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, LongVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, ShortVector)Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, byte[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, double[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, float[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, int[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, long[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(ShortVector, short[])Returns the weighted sample variance. Null values are excluded. Sample variance is computed us...
FUNCTIONwvardouble(byte[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(byte[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(double[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(float[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(int[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(long[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], ByteVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], DoubleVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], FloatVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], IntVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], LongVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], ShortVector)Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], byte[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], double[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], float[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], int[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], long[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...
FUNCTIONwvardouble(short[], short[])Returns the weighted sample variance. Null values are excluded. Weighted sample variance is co...

Parse

TypeNameSignatureDescription
FUNCTIONparseBooleanBoolean(String)Parses the string argument as a boolean.
FUNCTIONparseBytebyte(String)Parses the string argument as a byte.
FUNCTIONparseBytebyte(String, int)Parses the string argument as a byte.
FUNCTIONparseDoubledouble(String)Parses the string argument as a double.
FUNCTIONparseFloatfloat(String)Parses the string argument as a float.
FUNCTIONparseIntint(String)Parses the string argument as an int.
FUNCTIONparseIntint(String, int)Parses the string argument as an int.
FUNCTIONparseLonglong(String)Parses the string argument as a long.
FUNCTIONparseLonglong(String, int)Parses the string argument as a long.
FUNCTIONparseShortshort(String)Parses the string argument as a short.
FUNCTIONparseShortshort(String, int)Parses the string argument as a short.
FUNCTIONparseUnsignedIntint(String)Parses the string argument as an unsigned int.
FUNCTIONparseUnsignedIntint(String, int)Parses the string argument as an unsigned int.
FUNCTIONparseUnsignedLonglong(String)Parses the string argument as an unsigned long.
FUNCTIONparseUnsignedLonglong(String, int)Parses the string argument as an unsigned long.

QueryEngine

TypeNameSignatureDescription
CLASSColumnSourceNoneA "source" for column data - allows cell values to be looked up by (long) keys. Note for impl...
CLASSConditionFilter$FilterKernelNoneNo description.
CLASSContextNoneBase interface for state/mutable data that needs to be kept over the course of an evaluation sess...
CLASSDataColumnNoneInterface for positional column access to a Deephaven table column.
CLASSQueryScopeParamNoneNo description.
CLASSRowSequenceNoneAn ordered collection of long row keys.
CLASSRowSetNoneRowSequence with additional set and set-like capabilities.
CLASSRowSetBuilderRandomNoneBuilder interface for RowSet construction in arbitrary order.
CLASSRowSetBuilderSequentialNoneBuilder interface for RowSet construction in strict sequential order.
CLASSRowSetFactoryNoneRepository of factory methods for constructing row sets.
CLASSTableNoneA Deephaven table.
CLASSTrackingRowSetNoneRowSet that internally tracks changes and maintains a consistent snapshot of its previous state,...
CLASSTrackingWritableRowSetNoneTracking, writable RowSet.
CLASSWritableRowSetNoneRowSet that may be mutated (that is, have its contents changed in-place). Note that all RowSet i...
FUNCTIONassertAppendOnlyTable(String, Table)Asserts that the table is append-only. If its rows are ever modified or removed, the query will c...
FUNCTIONassertAppendOnlyTable(Table)Asserts that the table is append-only. If its rows are ever modified or removed, the query will c...
FUNCTIONassertSortedTable(String, Table, String, SortingOrder)Asserts that the table is sorted by the given column. This allows range filters to utilize bin...
FUNCTIONassertSortedTable(Table, String, SortingOrder)Asserts that the table is sorted by the given column. This allows range filters to utilize bin...
TypeNameSignatureDescription
CONSTANTBS_ANYBinSearchAlgoBinary search algorithm returns any matching index.
CONSTANTBS_HIGHESTBinSearchAlgoBinary search algorithm returns the highest matching index.
CONSTANTBS_LOWESTBinSearchAlgoBinary search algorithm returns the lowest matching index.
FUNCTIONbinSearchIndexint(ByteVector, byte, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(CharVector, char, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(Comparable[], Comparable, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(DoubleVector, double, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(FloatVector, float, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(IntVector, int, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(LongVector, long, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(ObjectVector, Comparable, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(ShortVector, short, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(byte[], byte, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(char[], char, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(double[], double, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(float[], float, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(int[], int, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(long[], long, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONbinSearchIndexint(short[], short, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(ByteVector, byte, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(CharVector, char, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(Comparable[], Comparable, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(DoubleVector, double, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(FloatVector, float, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(IntVector, int, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(LongVector, long, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(ObjectVector, Comparable, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(ShortVector, short, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(byte[], byte, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(char[], char, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(double[], double, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(float[], float, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(int[], int, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(long[], long, BinSearchAlgo)Performs a binary search to find a key.
FUNCTIONrawBinSearchIndexint(short[], short, BinSearchAlgo)Performs a binary search to find a key.

Sort

TypeNameSignatureDescription
FUNCTIONsortbyte[](ByteVector)Returns sorted values from smallest to largest.
FUNCTIONsortbyte[](Byte[])Returns sorted values from smallest to largest.
FUNCTIONsortbyte[](byte...)Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](DoubleVector)Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](Double[])Returns sorted values from smallest to largest.
FUNCTIONsortdouble[](double...)Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](FloatVector)Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](Float[])Returns sorted values from smallest to largest.
FUNCTIONsortfloat[](float...)Returns sorted values from smallest to largest.
FUNCTIONsortint[](IntVector)Returns sorted values from smallest to largest.
FUNCTIONsortint[](Integer[])Returns sorted values from smallest to largest.
FUNCTIONsortint[](int...)Returns sorted values from smallest to largest.
FUNCTIONsortlong[](LongVector)Returns sorted values from smallest to largest.
FUNCTIONsortlong[](Long[])Returns sorted values from smallest to largest.
FUNCTIONsortlong[](long...)Returns sorted values from smallest to largest.
FUNCTIONsortshort[](ShortVector)Returns sorted values from smallest to largest.
FUNCTIONsortshort[](Short[])Returns sorted values from smallest to largest.
FUNCTIONsortshort[](short...)Returns sorted values from smallest to largest.
FUNCTIONsortDescendingbyte[](ByteVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingbyte[](Byte[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingbyte[](byte...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](DoubleVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](Double[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingdouble[](double...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](FloatVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](Float[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingfloat[](float...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](IntVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](Integer[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingint[](int...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](LongVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](Long[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendinglong[](long...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](ShortVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](Short[])Returns sorted values from largest to smallest.
FUNCTIONsortDescendingshort[](short...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](Comparable...)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](Comparable[], Comparator)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](ObjectVector)Returns sorted values from largest to smallest.
FUNCTIONsortDescendingObjComparable[](ObjectVector, Comparator)Returns sorted values from largest to smallest.
FUNCTIONsortObjComparable[](Comparable...)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](Comparable[], Comparator)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](ObjectVector)Returns sorted values from smallest to largest.
FUNCTIONsortObjComparable[](ObjectVector, Comparator)Returns sorted values from smallest to largest.

Time

TypeNameSignatureDescription
CLASSDateTimeUtilsNoneFunctions for working with time.
CLASSDurationNoneA time-based amount of time, such as '34.5 seconds'. This class models a quantity or amount of...
CLASSInstantNoneAn instantaneous point on the time-line. This class models a single instantaneous point on the...
CLASSLocalDateNoneA date without a time-zone in the ISO-8601 calendar system, such as 2007-12-03. LocalDate is a...
CLASSLocalTimeNoneA time without a time-zone in the ISO-8601 calendar system, such as 10:15:30. LocalTime is an ...
CLASSPeriodNoneA date-based amount of time in the ISO-8601 calendar system, such as '2 years, 3 months and 4 da...
CLASSZonedDateTimeNoneA date-time with a time-zone in the ISO-8601 calendar system, such as 2007-12-03T10:15:30+01:00 ...
CONSTANTDAYlongOne day in nanoseconds. This is one hour of wall time and does not take into account calendar adj...
CONSTANTDAYS_PER_NANOdoubleNumber of days per nanosecond.
CONSTANTHOURlongOne hour in nanoseconds.
CONSTANTHOURS_PER_NANOdoubleNumber of hours per nanosecond.
CONSTANTMICROlongOne microsecond in nanoseconds.
CONSTANTMILLIlongOne millisecond in nanoseconds.
CONSTANTMINUTElongOne minute in nanoseconds.
CONSTANTMINUTES_PER_NANOdoubleNumber of minutes per nanosecond.
CONSTANTSECONDlongOne second in nanoseconds.
CONSTANTSECONDS_PER_NANOdoubleNumber of seconds per nanosecond.
CONSTANTWEEKlongOne week in nanoseconds. This is 7 days of wall time and does not take into account calendar adju...
CONSTANTYEARS_PER_NANO_365doubleNumber of 365 day years per nanosecond.
CONSTANTYEARS_PER_NANO_AVGdoubleNumber of average (365.2425 day) years per nanosecond.
CONSTANTYEAR_365longOne 365 day year in nanoseconds. This is 365 days of wall time and does not take into account cal...
CONSTANTYEAR_AVGlongOne average year in nanoseconds. This is 365.2425 days of wall time and does not take into accoun...
CONSTANTZERO_LENGTH_INSTANT_ARRAYInstant[]A zero length array of instants.
FUNCTIONaddCalendarvoid(BusinessCalendar)Adds a calendar to the collection.
FUNCTIONaddCalendarFromFilevoid(File)Adds a calendar to the collection from a file.
FUNCTIONaddCalendarFromFilevoid(String)Adds a calendar to the collection from a file.
FUNCTIONatMidnightInstant(Instant, ZoneId)Returns an Instant for the prior midnight in the specified time zone.
FUNCTIONatMidnightZonedDateTime(LocalDate, ZoneId)Returns an ZonedDateTime for the prior midnight in the specified time zone.
FUNCTIONatMidnightZonedDateTime(ZonedDateTime)Returns a ZonedDateTime for the prior midnight in the specified time zone.
FUNCTIONbusinessDatesLocalDate[](Instant, Instant)Returns the business dates in a given range.
FUNCTIONbusinessDatesLocalDate[](Instant, Instant, boolean, boolean)Returns the business dates in a given range.
FUNCTIONbusinessDatesLocalDate[](LocalDate, LocalDate)Returns the business dates in a given range.
FUNCTIONbusinessDatesLocalDate[](LocalDate, LocalDate, boolean, boolean)Returns the business dates in a given range.
FUNCTIONbusinessDatesLocalDate[](ZonedDateTime, ZonedDateTime)Returns the business dates in a given range.
FUNCTIONbusinessDatesLocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the business dates in a given range.
FUNCTIONbusinessDatesString[](String, String)Returns the business dates in a given range.
FUNCTIONbusinessDatesString[](String, String, boolean, boolean)Returns the business dates in a given range.
FUNCTIONcalendarBusinessCalendar()Returns the default business calendar.
FUNCTIONcalendarBusinessCalendar(String)Returns a business calendar.
FUNCTIONcalendarDateLocalDate()The current date for the calendar.
FUNCTIONcalendarDatesLocalDate[](Instant, Instant)Returns the dates in a given range.
FUNCTIONcalendarDatesLocalDate[](Instant, Instant, boolean, boolean)Returns the dates in a given range.
FUNCTIONcalendarDatesLocalDate[](LocalDate, LocalDate)Returns the dates in a given range.
FUNCTIONcalendarDatesLocalDate[](LocalDate, LocalDate, boolean, boolean)Returns the dates in a given range.
FUNCTIONcalendarDatesLocalDate[](ZonedDateTime, ZonedDateTime)Returns the dates in a given range.
FUNCTIONcalendarDatesLocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the dates in a given range.
FUNCTIONcalendarDatesString[](String, String)Returns the dates in a given range.
FUNCTIONcalendarDatesString[](String, String, boolean, boolean)Returns the dates in a given range.
FUNCTIONcalendarDayCalendarDay()Returns the CalendarDay for a date.
FUNCTIONcalendarDayCalendarDay(Instant)Returns the CalendarDay for a date.
FUNCTIONcalendarDayCalendarDay(LocalDate)Returns the CalendarDay for a date.
FUNCTIONcalendarDayCalendarDay(String)Returns the CalendarDay for a date.
FUNCTIONcalendarDayCalendarDay(ZonedDateTime)Returns the CalendarDay for a date.
FUNCTIONcalendarDayOfWeekDayOfWeek()The current day of the week for the calendar.
FUNCTIONcalendarDayOfWeekDayOfWeek(Instant)The current day of the week for the calendar.
FUNCTIONcalendarDayOfWeekDayOfWeek(LocalDate)The current day of the week for the calendar.
FUNCTIONcalendarDayOfWeekDayOfWeek(String)The current day of the week for the calendar.
FUNCTIONcalendarDayOfWeekDayOfWeek(ZonedDateTime)The current day of the week for the calendar.
FUNCTIONcalendarDayOfWeekValueint()Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S...
FUNCTIONcalendarDayOfWeekValueint(Instant)Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S...
FUNCTIONcalendarDayOfWeekValueint(LocalDate)Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S...
FUNCTIONcalendarDayOfWeekValueint(String)Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S...
FUNCTIONcalendarDayOfWeekValueint(ZonedDateTime)Returns a 1-based int value of the day of the week for the calendar, where 1 is Monday and 7 is S...
FUNCTIONcalendarNameString()Returns the name of the default business calendar.
FUNCTIONcalendarNamesString[]()Returns the names of all available calendars.
FUNCTIONcalendarTimeZoneZoneId()Gets the timezone of the calendar.
FUNCTIONcalendarsFromConfigurationList()Loads the line-separated calendar XML resources from the resource file configuration value "Cale...
FUNCTIONcurrentClockClock()Returns the clock used to compute the current time. This may be the current system clock, or it m...
FUNCTIONdayOfMonthint(Instant, ZoneId)Returns a 1-based int value of the day of the month for an Instant and specified time zone. The f...
FUNCTIONdayOfMonthint(LocalDate)Returns a 1-based int value of the day of the month for a ZonedDateTime and specified time zone. ...
FUNCTIONdayOfMonthint(ZonedDateTime)Returns a 1-based int value of the day of the month for a ZonedDateTime and specified time zone. ...
FUNCTIONdayOfWeekDayOfWeek(Instant, ZoneId)Returns the day of the week for an Instant in the specified time zone.
FUNCTIONdayOfWeekDayOfWeek(LocalDate)Returns athe day of the week for a ZonedDateTime in the specified time zone.
FUNCTIONdayOfWeekDayOfWeek(ZonedDateTime)Returns the day of the week for a ZonedDateTime in the specified time zone.
FUNCTIONdayOfWeekValueint(Instant, ZoneId)Returns a 1-based int value of the day of the week for an Instant in the specified time zone, wit...
FUNCTIONdayOfWeekValueint(LocalDate)Returns a 1-based int value of the day of the week for a ZonedDateTime in the specified time zone...
FUNCTIONdayOfWeekValueint(ZonedDateTime)Returns a 1-based int value of the day of the week for a ZonedDateTime in the specified time zone...
FUNCTIONdayOfYearint(Instant, ZoneId)Returns a 1-based int value of the day of the year (Julian date) for an Instant in the specified ...
FUNCTIONdayOfYearint(LocalDate)Returns a 1-based int value of the day of the year (Julian date) for a ZonedDateTime in the speci...
FUNCTIONdayOfYearint(ZonedDateTime)Returns a 1-based int value of the day of the year (Julian date) for a ZonedDateTime in the speci...
FUNCTIONdiffBusinessDaysdouble(Instant, Instant)Returns the amount of business time in standard business days between two times.
FUNCTIONdiffBusinessDaysdouble(ZonedDateTime, ZonedDateTime)Returns the amount of business time in standard business days between two times.
FUNCTIONdiffBusinessDurationDuration(Instant, Instant)Returns the amount of business time between two times.
FUNCTIONdiffBusinessDurationDuration(ZonedDateTime, ZonedDateTime)Returns the amount of business time between two times.
FUNCTIONdiffBusinessNanoslong(Instant, Instant)Returns the amount of business time in nanoseconds between two times.
FUNCTIONdiffBusinessNanoslong(ZonedDateTime, ZonedDateTime)Returns the amount of business time in nanoseconds between two times.
FUNCTIONdiffBusinessYearsdouble(Instant, Instant)Returns the number of business years between start and end.
FUNCTIONdiffBusinessYearsdouble(ZonedDateTime, ZonedDateTime)Returns the number of business years between start and end.
FUNCTIONdiffDaysdouble(Instant, Instant)Returns the difference in days between two instant values.
FUNCTIONdiffDaysdouble(ZonedDateTime, ZonedDateTime)Returns the difference in days between two zoned date time values.
FUNCTIONdiffMicroslong(Instant, Instant)Returns the difference in microseconds between two instant values.
FUNCTIONdiffMicroslong(ZonedDateTime, ZonedDateTime)Returns the difference in microseconds between two zoned date time values.
FUNCTIONdiffMillislong(Instant, Instant)Returns the difference in milliseconds between two instant values.
FUNCTIONdiffMillislong(ZonedDateTime, ZonedDateTime)Returns the difference in milliseconds between two zoned date time values.
FUNCTIONdiffMinutesdouble(Instant, Instant)Returns the difference in minutes between two instant values.
FUNCTIONdiffMinutesdouble(ZonedDateTime, ZonedDateTime)Returns the difference in minutes between two zoned date time values.
FUNCTIONdiffNanoslong(Instant, Instant)Returns the difference in nanoseconds between two instant values.
FUNCTIONdiffNanoslong(ZonedDateTime, ZonedDateTime)Returns the difference in nanoseconds between two zoned date time values.
FUNCTIONdiffNonBusinessDurationDuration(Instant, Instant)Returns the amount of non-business time between two times.
FUNCTIONdiffNonBusinessDurationDuration(ZonedDateTime, ZonedDateTime)Returns the amount of non-business time between two times.
FUNCTIONdiffNonBusinessNanoslong(Instant, Instant)Returns the amount of non-business time in nanoseconds between two times.
FUNCTIONdiffNonBusinessNanoslong(ZonedDateTime, ZonedDateTime)Returns the amount of non-business time in nanoseconds between two times.
FUNCTIONdiffSecondsdouble(Instant, Instant)Returns the difference in seconds between two instant values.
FUNCTIONdiffSecondsdouble(ZonedDateTime, ZonedDateTime)Returns the difference in seconds between two zoned date time values.
FUNCTIONdiffYears365double(Instant, Instant)Returns the difference in years between two instant values. Years are defined in terms of 365 ...
FUNCTIONdiffYears365double(ZonedDateTime, ZonedDateTime)Returns the difference in years between two zoned date time values. Years are defined in terms...
FUNCTIONdiffYearsAvgdouble(Instant, Instant)Returns the difference in years between two instant values. Years are defined in terms of 365....
FUNCTIONdiffYearsAvgdouble(ZonedDateTime, ZonedDateTime)Returns the difference in years between two zoned date time values. Years are defined in terms...
FUNCTIONepochAutoToEpochNanoslong(long)Converts an offset from the Epoch to a nanoseconds from the Epoch. The offset can be in milliseco...
FUNCTIONepochAutoToInstantInstant(long)Converts an offset from the Epoch to an Instant. The offset can be in milliseconds, microseconds,...
FUNCTIONepochAutoToZonedDateTimeZonedDateTime(long, ZoneId)Converts an offset from the Epoch to a ZonedDateTime. The offset can be in milliseconds, microsec...
FUNCTIONepochDayslong(LocalDate)Returns number of days from the Epoch for a LocalDate value.
FUNCTIONepochDaysAsIntint(LocalDate)Returns number of days (as an int) from the Epoch for a LocalDate value.
FUNCTIONepochDaysAsIntToLocalDateLocalDate(int)Converts days from the Epoch (stored as int) to a LocalDate.
FUNCTIONepochDaysToLocalDateLocalDate(long)Converts days from the Epoch to a LocalDate.
FUNCTIONepochMicroslong(Instant)Returns microseconds from the Epoch for an Instant value.
FUNCTIONepochMicroslong(ZonedDateTime)Returns microseconds from the Epoch for a ZonedDateTime value.
FUNCTIONepochMicrosToInstantInstant(long)Converts microseconds from the Epoch to an Instant.
FUNCTIONepochMicrosToZonedDateTimeZonedDateTime(long, ZoneId)Converts microseconds from the Epoch to a ZonedDateTime.
FUNCTIONepochMillislong(Instant)Returns milliseconds from the Epoch for an Instant value.
FUNCTIONepochMillislong(ZonedDateTime)Returns milliseconds from the Epoch for a ZonedDateTime value.
FUNCTIONepochMillisToInstantInstant(long)Converts milliseconds from the Epoch to an Instant.
FUNCTIONepochMillisToZonedDateTimeZonedDateTime(long, ZoneId)Converts milliseconds from the Epoch to a ZonedDateTime.
FUNCTIONepochNanoslong(Instant)Returns nanoseconds from the Epoch for an Instant value.
FUNCTIONepochNanoslong(ZonedDateTime)Returns nanoseconds from the Epoch for a ZonedDateTime value.
FUNCTIONepochNanosToInstantInstant(long)Converts nanoseconds from the Epoch to an Instant.
FUNCTIONepochNanosToZonedDateTimeZonedDateTime(long, ZoneId)Converts nanoseconds from the Epoch to a ZonedDateTime.
FUNCTIONepochSecondslong(Instant)Returns seconds since from the Epoch for an Instant value.
FUNCTIONepochSecondslong(ZonedDateTime)Returns seconds since from the Epoch for a ZonedDateTime value.
FUNCTIONepochSecondsToInstantInstant(long)Converts seconds from the Epoch to an Instant.
FUNCTIONepochSecondsToZonedDateTimeZonedDateTime(long, ZoneId)Converts seconds from the Epoch to a ZonedDateTime.
FUNCTIONexcelToInstantInstant(double, ZoneId)Converts an Excel time represented as a double to an Instant.
FUNCTIONexcelToZonedDateTimeZonedDateTime(double, ZoneId)Converts an Excel time represented as a double to a ZonedDateTime.
FUNCTIONformatDateString(Instant, ZoneId)Returns an Instant formatted as a "yyyy-MM-dd" string.
FUNCTIONformatDateString(LocalDate)Returns a LocalDate formatted as a "yyyy-MM-dd" string.
FUNCTIONformatDateString(ZonedDateTime)Returns a ZonedDateTime formatted as a "yyyy-MM-dd" string.
FUNCTIONformatDateTimeString(Instant, ZoneId)Returns an Instant formatted as a "yyyy-MM-ddThh:mm:ss.SSSSSSSSS TZ" string.
FUNCTIONformatDateTimeString(ZonedDateTime)Returns a ZonedDateTime formatted as a "yyyy-MM-ddThh:mm:ss.SSSSSSSSS TZ" string.
FUNCTIONformatDurationNanosString(long)Returns a nanosecond duration formatted as a "[-]PThhh:mm:ss.nnnnnnnnn" string.
FUNCTIONfractionBusinessDayCompletedouble()Fraction of the current business day complete.
FUNCTIONfractionBusinessDayCompletedouble(Instant)Fraction of the business day complete.
FUNCTIONfractionBusinessDayCompletedouble(ZonedDateTime)Fraction of the business day complete.
FUNCTIONfractionBusinessDayRemainingdouble()Fraction of the business day remaining.
FUNCTIONfractionBusinessDayRemainingdouble(Instant)Fraction of the business day remaining.
FUNCTIONfractionBusinessDayRemainingdouble(ZonedDateTime)Fraction of the business day remaining.
FUNCTIONfractionStandardBusinessDaydouble()Returns the ratio of the business day length and the standard business day length. For example, a...
FUNCTIONfractionStandardBusinessDaydouble(Instant)Returns the ratio of the business day length and the standard business day length. For example, a...
FUNCTIONfractionStandardBusinessDaydouble(LocalDate)Returns the ratio of the business day length and the standard business day length. For example, a...
FUNCTIONfractionStandardBusinessDaydouble(String)Returns the ratio of the business day length and the standard business day length. For example, a...
FUNCTIONfractionStandardBusinessDaydouble(ZonedDateTime)Returns the ratio of the business day length and the standard business day length. For example, a...
FUNCTIONfutureBusinessDateLocalDate(int)Adds a specified number of business days to the current date. Adding negative days is equivalent ...
FUNCTIONfutureDateLocalDate(int)Adds a specified number of days to the current date. Adding negative days is equivalent to subtra...
FUNCTIONfutureNonBusinessDateLocalDate(int)Adds a specified number of non-business days to the current date. Adding negative days is equival...
FUNCTIONholidaysMap()Business day schedules for all holidays. A holiday is a date that has a schedule that is differen...
FUNCTIONhourOfDayint(Instant, ZoneId)Returns the number of hours that have elapsed since the top of the day. On days when daylight ...
FUNCTIONhourOfDayint(ZonedDateTime)Returns the number of hours that have elapsed since the top of the day. On days when daylight ...
FUNCTIONisAfterboolean(Instant, Instant)Evaluates whether one instant value is after a second instant value.
FUNCTIONisAfterboolean(ZonedDateTime, ZonedDateTime)Evaluates whether one zoned date time value is after a second zoned date time value.
FUNCTIONisAfterOrEqualboolean(Instant, Instant)Evaluates whether one instant value is after or equal to a second instant value.
FUNCTIONisAfterOrEqualboolean(ZonedDateTime, ZonedDateTime)Evaluates whether one zoned date time value is after or equal to a second zoned date time value.
FUNCTIONisBeforeboolean(Instant, Instant)Evaluates whether one instant value is before a second instant value.
FUNCTIONisBeforeboolean(ZonedDateTime, ZonedDateTime)Evaluates whether one zoned date time value is before a second zoned date time value.
FUNCTIONisBeforeOrEqualboolean(Instant, Instant)Evaluates whether one instant value is before or equal to a second instant value.
FUNCTIONisBeforeOrEqualboolean(ZonedDateTime, ZonedDateTime)Evaluates whether one zoned date time value is before or equal to a second zoned date time value.
FUNCTIONisBusinessDayboolean()Is the current day a business day? As long as the current time occurs on a business day, it is co...
FUNCTIONisBusinessDayboolean(DayOfWeek)Is the day of the week a normal business day?.
FUNCTIONisBusinessDayboolean(Instant)Is the time on a business day? As long as the time occurs on a business day, it is considered a...
FUNCTIONisBusinessDayboolean(LocalDate)Is the date a business day?.
FUNCTIONisBusinessDayboolean(String)Is the date a business day?.
FUNCTIONisBusinessDayboolean(ZonedDateTime)Is the time on a business day? As long as the time occurs on a business day, it is considered a...
FUNCTIONisBusinessTimeboolean()Determines if the current time according to the Deephaven system clock is a business time. Busine...
FUNCTIONisBusinessTimeboolean(Instant)Determines if the specified time is a business time. Business times fall within business time ran...
FUNCTIONisBusinessTimeboolean(ZonedDateTime)Determines if the specified time is a business time. Business times fall within business time ran...
FUNCTIONisLastBusinessDayOfMonthboolean()Is the current date the last business day of the month?.
FUNCTIONisLastBusinessDayOfMonthboolean(Instant)Is the time on the last business day of the month? As long as the time occurs on a business day...
FUNCTIONisLastBusinessDayOfMonthboolean(String)Is the date the last business day of the month?.
FUNCTIONisLastBusinessDayOfMonthboolean(ZonedDateTime)Is the time on the last business day of the month? As long as the time occurs on a business day...
FUNCTIONisLastBusinessDayOfWeekboolean()Is the current date the last business day of the week?.
FUNCTIONisLastBusinessDayOfWeekboolean(Instant)Is the time on the last business day of the week? As long as the time occurs on a business day,...
FUNCTIONisLastBusinessDayOfWeekboolean(LocalDate)Is the date the last business day of the week?.
FUNCTIONisLastBusinessDayOfWeekboolean(String)Is the date is last business day of the week?.
FUNCTIONisLastBusinessDayOfWeekboolean(ZonedDateTime)Is the time on the last business day of the week? As long as the time occurs on a business day,...
FUNCTIONisLastBusinessDayOfYearboolean()Is the current date the last business day of the year? As long as the current time occurs on a ...
FUNCTIONisLastBusinessDayOfYearboolean(Instant)Is the time on the last business day of the year? As long as the time occurs on a business day,...
FUNCTIONisLastBusinessDayOfYearboolean(ZonedDateTime)Is the time on the last business day of the year? As long as the time occurs on a business day,...
FUNCTIONlowerBinInstant(Instant, Duration)No description.
FUNCTIONlowerBinInstant(Instant, Duration, Duration)No description.
FUNCTIONlowerBinInstant(Instant, long)Returns an Instant value, which is at the starting (lower) end of a time range defined by the int...
FUNCTIONlowerBinInstant(Instant, long, long)Returns an Instant value, which is at the starting (lower) end of a time range defined by the int...
FUNCTIONlowerBinZonedDateTime(ZonedDateTime, Duration)No description.
FUNCTIONlowerBinZonedDateTime(ZonedDateTime, Duration, Duration)No description.
FUNCTIONlowerBinZonedDateTime(ZonedDateTime, long)Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th...
FUNCTIONlowerBinZonedDateTime(ZonedDateTime, long, long)Returns a ZonedDateTime value, which is at the starting (lower) end of a time range defined by th...
FUNCTIONmicrosOfDayToLocalTimeLocalTime(long)Converts the number of microseconds from midnight to a LocalTime.
FUNCTIONmicrosOfMilliint(Instant)Returns the number of microseconds that have elapsed since the top of the millisecond. Nanosecond...
FUNCTIONmicrosOfMilliint(ZonedDateTime)Returns the number of microseconds that have elapsed since the top of the millisecond. Nanosecond...
FUNCTIONmicrosOfSecondlong(Instant, ZoneId)Returns the number of microseconds that have elapsed since the top of the second.
FUNCTIONmicrosOfSecondlong(ZonedDateTime)Returns the number of microseconds that have elapsed since the top of the second.
FUNCTIONmicrosToMillislong(long)Converts microseconds to milliseconds.
FUNCTIONmicrosToNanoslong(long)Converts microseconds to nanoseconds.
FUNCTIONmicrosToSecondslong(long)Converts microseconds to seconds.
FUNCTIONmillisOfDayint(Instant, ZoneId)Returns the number of milliseconds that have elapsed since the top of the day. On days when da...
FUNCTIONmillisOfDayint(ZonedDateTime)Returns the number of milliseconds that have elapsed since the top of the day. On days when da...
FUNCTIONmillisOfDayToLocalTimeLocalTime(int)Converts the number of milliseconds from midnight to a LocalTime.
FUNCTIONmillisOfSecondint(Instant, ZoneId)Returns the number of milliseconds that have elapsed since the top of the second.
FUNCTIONmillisOfSecondint(ZonedDateTime)Returns the number of milliseconds that have elapsed since the top of the second.
FUNCTIONmillisToMicroslong(long)Converts milliseconds to microseconds.
FUNCTIONmillisToNanoslong(long)Converts milliseconds to nanoseconds.
FUNCTIONmillisToSecondslong(long)Converts milliseconds to seconds.
FUNCTIONminusInstant(Instant, Duration)Subtracts a time period to an Instant.
FUNCTIONminusInstant(Instant, Period)Subtracts a time period to an Instant.
FUNCTIONminusInstant(Instant, long)Subtracts nanoseconds from an Instant.
FUNCTIONminusLocalDate(LocalDate, Period)Subtracts a time period from a LocalDate.
FUNCTIONminusZonedDateTime(ZonedDateTime, Duration)Subtracts a time period to a ZonedDateTime.
FUNCTIONminusZonedDateTime(ZonedDateTime, Period)Subtracts a time period to a ZonedDateTime.
FUNCTIONminusZonedDateTime(ZonedDateTime, long)Subtracts nanoseconds from a ZonedDateTime.
FUNCTIONminuslong(Instant, Instant)Subtract one instant from another and return the difference in nanoseconds.
FUNCTIONminuslong(ZonedDateTime, ZonedDateTime)Subtract one zoned date time from another and return the difference in nanoseconds.
FUNCTIONminusBusinessDaysInstant(Instant, int)Subtracts a specified number of business days from an input time. Subtracting negative days is eq...
FUNCTIONminusBusinessDaysLocalDate(LocalDate, int)Subtracts a specified number of business days from an input date. Subtracting negative days is eq...
FUNCTIONminusBusinessDaysString(String, int)Subtracts a specified number of business days from an input date. Subtracting negative days is eq...
FUNCTIONminusBusinessDaysZonedDateTime(ZonedDateTime, int)Subtracts a specified number of business days from an input time. Subtracting negative days is eq...
FUNCTIONminusDaysInstant(Instant, int)Subtracts a specified number of days to an input time. Subtracting negative days is equivalent to...
FUNCTIONminusDaysLocalDate(LocalDate, int)Subtracts a specified number of days to an input date. Subtracting negative days is equivalent to...
FUNCTIONminusDaysLocalDate(LocalDate, long)Subtracts days from a LocalDate.
FUNCTIONminusDaysString(String, int)Subtracts a specified number of days to an input date. Subtracting negative days is equivalent to...
FUNCTIONminusDaysZonedDateTime(ZonedDateTime, int)Subtracts a specified number of days to an input time. Subtracting negative days is equivalent to...
FUNCTIONminusNonBusinessDaysInstant(Instant, int)Subtracts a specified number of non-business days to an input time. Subtracting negative days is ...
FUNCTIONminusNonBusinessDaysLocalDate(LocalDate, int)Subtracts a specified number of non-business days to an input date. Subtracting negative days is ...
FUNCTIONminusNonBusinessDaysString(String, int)Subtracts a specified number of non-business days to an input date. Subtracting negative days is ...
FUNCTIONminusNonBusinessDaysZonedDateTime(ZonedDateTime, int)Subtracts a specified number of non-business days to an input time. Subtracting negative days is ...
FUNCTIONminuteOfDayint(Instant, ZoneId)Returns the number of minutes that have elapsed since the top of the day. On days when dayligh...
FUNCTIONminuteOfDayint(ZonedDateTime)Returns the number of minutes that have elapsed since the top of the day. On days when dayligh...
FUNCTIONminuteOfHourint(Instant, ZoneId)Returns the number of minutes that have elapsed since the top of the hour.
FUNCTIONminuteOfHourint(ZonedDateTime)Returns the number of minutes that have elapsed since the top of the hour.
FUNCTIONmonthOfYearint(Instant, ZoneId)Returns a 1-based int value of the month of the year (Julian date) for an Instant in the specifie...
FUNCTIONmonthOfYearint(LocalDate)Returns a 1-based int value of the month of the year (Julian date) for a LocalDate. January is 1,...
FUNCTIONmonthOfYearint(ZonedDateTime)Returns a 1-based int value of the month of the year (Julian date) for a ZonedDateTime in the spe...
FUNCTIONnanosOfDaylong(Instant, ZoneId)Returns the number of nanoseconds that have elapsed since the top of the day. On days when day...
FUNCTIONnanosOfDaylong(LocalTime)Returns the number of nanoseconds that have elapsed since the top of the day.
FUNCTIONnanosOfDaylong(ZonedDateTime)Returns the number of nanoseconds that have elapsed since the top of the day. On days when day...
FUNCTIONnanosOfDayToLocalTimeLocalTime(long)Converts the number of nanoseconds from midnight to a LocalTime.
FUNCTIONnanosOfMilliint(Instant)Returns the number of nanoseconds that have elapsed since the top of the millisecond.
FUNCTIONnanosOfMilliint(ZonedDateTime)Returns the number of nanoseconds that have elapsed since the top of the millisecond.
FUNCTIONnanosOfSecondlong(Instant, ZoneId)Returns the number of nanoseconds that have elapsed since the top of the second.
FUNCTIONnanosOfSecondlong(ZonedDateTime)Returns the number of nanoseconds that have elapsed since the top of the second.
FUNCTIONnanosToMicroslong(long)Converts nanoseconds to microseconds.
FUNCTIONnanosToMillislong(long)Converts nanoseconds to milliseconds.
FUNCTIONnanosToSecondslong(long)Converts nanoseconds to seconds.
FUNCTIONnonBusinessDatesLocalDate[](Instant, Instant)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesLocalDate[](Instant, Instant, boolean, boolean)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesLocalDate[](LocalDate, LocalDate)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesLocalDate[](LocalDate, LocalDate, boolean, boolean)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesLocalDate[](ZonedDateTime, ZonedDateTime)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesLocalDate[](ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesString[](String, String)Returns the non-business dates in a given range.
FUNCTIONnonBusinessDatesString[](String, String, boolean, boolean)Returns the non-business dates in a given range.
FUNCTIONnowInstant()Provides the current instant with nanosecond resolution according to the current clock. Under mos...
FUNCTIONnowMillisResolutionInstant()Provides the current instant with millisecond resolution according to the current clock. Under mo...
FUNCTIONnowSystemInstant()Provides the current instant with nanosecond resolution according to the system clock. Note that ...
FUNCTIONnowSystemMillisResolutionInstant()Provides the current instant with millisecond resolution according to the system clock. Note that...
FUNCTIONnumberBusinessDatesint(Instant, Instant)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(Instant, Instant, boolean, boolean)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(LocalDate, LocalDate)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(LocalDate, LocalDate, boolean, boolean)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(String, String)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(String, String, boolean, boolean)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(ZonedDateTime, ZonedDateTime)Returns the number of business dates in a given range.
FUNCTIONnumberBusinessDatesint(ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the number of business dates in a given range.
FUNCTIONnumberCalendarDatesint(Instant, Instant)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(Instant, Instant, boolean, boolean)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(LocalDate, LocalDate)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(LocalDate, LocalDate, boolean, boolean)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(String, String)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(String, String, boolean, boolean)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(ZonedDateTime, ZonedDateTime)Returns the number of dates in a given range.
FUNCTIONnumberCalendarDatesint(ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the number of dates in a given range.
FUNCTIONnumberNonBusinessDatesint(Instant, Instant)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(Instant, Instant, boolean, boolean)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(LocalDate, LocalDate)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(LocalDate, LocalDate, boolean, boolean)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(String, String)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(String, String, boolean, boolean)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(ZonedDateTime, ZonedDateTime)Returns the number of non-business dates in a given range.
FUNCTIONnumberNonBusinessDatesint(ZonedDateTime, ZonedDateTime, boolean, boolean)Returns the number of non-business dates in a given range.
FUNCTIONparseDurationDuration(String)Parses the string argument as a duration, which is a unit of time in terms of clock time (24-hour...
FUNCTIONparseDurationNanoslong(String)Parses the string argument as a time duration in nanoseconds. Time duration strings can be for...
FUNCTIONparseDurationNanosQuietlong(String)Parses the string argument as a time duration in nanoseconds. Time duration strings can be for...
FUNCTIONparseDurationQuietDuration(String)Parses the string argument as a duration, which is a unit of time in terms of clock time (24-hour...
FUNCTIONparseEpochNanoslong(String)Parses the string argument as nanoseconds since the Epoch. Date time strings are formatted acc...
FUNCTIONparseEpochNanosQuietlong(String)Parses the string argument as a nanoseconds since the Epoch. Date time strings are formatted a...
FUNCTIONparseInstantInstant(String)Parses the string argument as an Instant. Date time strings are formatted according to the ISO...
FUNCTIONparseInstantQuietInstant(String)Parses the string argument as an Instant. Date time strings are formatted according to the ISO...
FUNCTIONparseLocalDateLocalDate(String)Parses the string argument as a local date, which is a date without a time or time zone. Date ...
FUNCTIONparseLocalDateQuietLocalDate(String)Parses the string argument as a local date, which is a date without a time or time zone. Date ...
FUNCTIONparseLocalTimeLocalTime(String)Parses the string argument as a local time, which is the time that would be read from a clock and...
FUNCTIONparseLocalTimeQuietLocalTime(String)Parses the string argument as a local time, which is the time that would be read from a clock and...
FUNCTIONparsePeriodPeriod(String)Parses the string argument as a period, which is a unit of time in terms of calendar time (days, ...
FUNCTIONparsePeriodQuietPeriod(String)Parses the string argument as a period, which is a unit of time in terms of calendar time (days, ...
FUNCTIONparseTimePrecisionChronoField(String)Returns a ChronoField indicating the level of precision in a time, datetime, or period nanos stri...
FUNCTIONparseTimePrecisionQuietChronoField(String)Returns a ChronoField indicating the level of precision in a time or datetime string.
FUNCTIONparseTimeZoneZoneId(String)Parses the string argument as a time zone.
FUNCTIONparseTimeZoneQuietZoneId(String)Parses the string argument as a time zone.
FUNCTIONparseZonedDateTimeZonedDateTime(String)Parses the string argument as a ZonedDateTime. Date time strings are formatted according to th...
FUNCTIONparseZonedDateTimeQuietZonedDateTime(String)Parses the string argument as a ZonedDateTime. Date time strings are formatted according to th...
FUNCTIONpastBusinessDateLocalDate(int)Subtracts a specified number of business days from the current date. Subtracting negative days is...
FUNCTIONpastDateLocalDate(int)Subtracts a specified number of days from the current date. Subtracting negative days is equivale...
FUNCTIONpastNonBusinessDateLocalDate(int)Subtracts a specified number of non-business days to the current date. Subtracting negative days ...
FUNCTIONplusInstant(Instant, Duration)Adds a time period to an Instant.
FUNCTIONplusInstant(Instant, Period)Adds a time period to an Instant.
FUNCTIONplusInstant(Instant, long)Adds nanoseconds to an Instant.
FUNCTIONplusLocalDate(LocalDate, Period)Adds a time period to a LocalDate.
FUNCTIONplusZonedDateTime(ZonedDateTime, Duration)Adds a time period to a ZonedDateTime.
FUNCTIONplusZonedDateTime(ZonedDateTime, Period)Adds a time period to a ZonedDateTime.
FUNCTIONplusZonedDateTime(ZonedDateTime, long)Adds nanoseconds to a ZonedDateTime.
FUNCTIONplusBusinessDaysInstant(Instant, int)Adds a specified number of business days to an input time. Adding negative days is equivalent to ...
FUNCTIONplusBusinessDaysLocalDate(LocalDate, int)Adds a specified number of business days to an input date. Adding negative days is equivalent to ...
FUNCTIONplusBusinessDaysString(String, int)Adds a specified number of business days to an input date. Adding negative days is equivalent to ...
FUNCTIONplusBusinessDaysZonedDateTime(ZonedDateTime, int)Adds a specified number of business days to an input time. Adding negative days is equivalent to ...
FUNCTIONplusDaysInstant(Instant, int)Adds a specified number of days to an input time. Adding negative days is equivalent to subtracti...
FUNCTIONplusDaysLocalDate(LocalDate, int)Adds a specified number of days to an input date. Adding negative days is equivalent to subtracti...
FUNCTIONplusDaysLocalDate(LocalDate, long)Adds days to a LocalDate.
FUNCTIONplusDaysString(String, int)Adds a specified number of days to an input date. Adding negative days is equivalent to subtracti...
FUNCTIONplusDaysZonedDateTime(ZonedDateTime, int)Adds a specified number of days to an input time. Adding negative days is equivalent to subtracti...
FUNCTIONplusNonBusinessDaysInstant(Instant, int)Adds a specified number of non-business days to an input time. Adding negative days is equivalent...
FUNCTIONplusNonBusinessDaysLocalDate(LocalDate, int)Adds a specified number of non-business days to an input date. Adding negative days is equivalent...
FUNCTIONplusNonBusinessDaysString(String, int)Adds a specified number of non-business days to an input date. Adding negative days is equivalent...
FUNCTIONplusNonBusinessDaysZonedDateTime(ZonedDateTime, int)Adds a specified number of non-business days to an input time. Adding negative days is equivalent...
FUNCTIONremoveCalendarvoid(String)Removes a calendar from the collection.
FUNCTIONsecondOfDayint(Instant, ZoneId)Returns the number of seconds that have elapsed since the top of the day. On days when dayligh...
FUNCTIONsecondOfDayint(ZonedDateTime)Returns the number of seconds that have elapsed since the top of the day. On days when dayligh...
FUNCTIONsecondOfMinuteint(Instant, ZoneId)Returns the number of seconds that have elapsed since the top of the minute.
FUNCTIONsecondOfMinuteint(ZonedDateTime)Returns the number of seconds that have elapsed since the top of the minute.
FUNCTIONsecondsToMicroslong(long)Converts seconds to microseconds.
FUNCTIONsecondsToMillislong(long)Converts seconds to milliseconds.
FUNCTIONsecondsToNanoslong(long)Converts seconds to nanoseconds.
FUNCTIONsetCalendarvoid(String)Sets the default calendar by name. The calendar must already be present in the collection.
FUNCTIONsetClockvoid(Clock)Set the clock used to compute the current time. This allows a custom clock to be used instead of ...
FUNCTIONstandardBusinessDayCalendarDay()Business day schedule for a standard business day.
FUNCTIONstandardBusinessDurationDuration()Length of a standard business day.
FUNCTIONstandardBusinessNanoslong()Length of a standard business day in nanoseconds.
FUNCTIONtimeZoneZoneId()Gets the system default time zone.
FUNCTIONtimeZoneZoneId(String)Gets the time zone for a time zone name.
FUNCTIONtimeZoneAliasAddvoid(String, String)Adds a new time zone alias.
FUNCTIONtimeZoneAliasRmboolean(String)Removes a time zone alias.
FUNCTIONtoDateDate(Instant)Converts an Instant to a Date. instant will be truncated to millisecond resolution.
FUNCTIONtoDateDate(ZonedDateTime)Converts a ZonedDateTime to a Date. dateTime will be truncated to millisecond resolution.
FUNCTIONtoExcelTimedouble(Instant, ZoneId)Converts an Instant to an Excel time represented as a double.
FUNCTIONtoExcelTimedouble(ZonedDateTime)Converts a ZonedDateTime to an Excel time represented as a double.
FUNCTIONtoInstantInstant(Date)Converts a Date to an Instant.
FUNCTIONtoInstantInstant(LocalDate, LocalTime, ZoneId)Converts a LocalDate, LocalTime, and ZoneId to an Instant.
FUNCTIONtoInstantInstant(ZonedDateTime)Converts a ZonedDateTime to an Instant.
FUNCTIONtoLocalDateLocalDate(Instant, ZoneId)Converts an Instant to a LocalDate with the specified ZoneId.
FUNCTIONtoLocalDateLocalDate(ZonedDateTime)Get the LocalDate portion of a ZonedDateTime.
FUNCTIONtoLocalTimeLocalTime(Instant, ZoneId)Converts an Instant to a LocalTime with the specified ZoneId.
FUNCTIONtoLocalTimeLocalTime(ZonedDateTime)Get the LocalTime portion of a ZonedDateTime.
FUNCTIONtoZonedDateTimeZonedDateTime(Instant, ZoneId)Converts an Instant to a ZonedDateTime.
FUNCTIONtoZonedDateTimeZonedDateTime(LocalDate, LocalTime, ZoneId)Converts a LocalDate, LocalTime, and ZoneId to a ZonedDateTime.
FUNCTIONtodayString()Provides the current date string according to the current clock and the default time zone. Under...
FUNCTIONtodayString(ZoneId)Provides the current date string according to the current clock. Under most circumstances, this ...
FUNCTIONtodayLocalDateLocalDate()Provides the current date according to the current clock and the default time zone. Under most c...
FUNCTIONtodayLocalDateLocalDate(ZoneId)Provides the current date according to the current clock. Under most circumstances, this method ...
FUNCTIONupperBinInstant(Instant, Duration)No description.
FUNCTIONupperBinInstant(Instant, Duration, Duration)No description.
FUNCTIONupperBinInstant(Instant, long)Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter...
FUNCTIONupperBinInstant(Instant, long, long)Returns an Instant value, which is at the ending (upper) end of a time range defined by the inter...
FUNCTIONupperBinZonedDateTime(ZonedDateTime, Duration)No description.
FUNCTIONupperBinZonedDateTime(ZonedDateTime, Duration, Duration)No description.
FUNCTIONupperBinZonedDateTime(ZonedDateTime, long)Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ...
FUNCTIONupperBinZonedDateTime(ZonedDateTime, long, long)Returns a ZonedDateTime value, which is at the ending (upper) end of a time range defined by the ...
FUNCTIONweekendDaysSet()Returns the days that make up a weekend.
FUNCTIONyearint(Instant, ZoneId)Returns the year for an Instant in the specified time zone.
FUNCTIONyearint(LocalDate)Returns the year for a LocalDate.
FUNCTIONyearint(ZonedDateTime)Returns the year for a ZonedDateTime in the specified time zone.
FUNCTIONyearOfCenturyint(Instant, ZoneId)Returns the year of the century (two-digit year) for an Instant in the specified time zone.
FUNCTIONyearOfCenturyint(LocalDate)Returns the year of the century (two-digit year) for a LocalDate in the specified time zone.
FUNCTIONyearOfCenturyint(ZonedDateTime)Returns the year of the century (two-digit year) for a ZonedDateTime in the specified time zone.