A  B  C  F  G  I  L  M  R  S  T 

A

add(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Adds val to the end of the list, growing as needed.
add(double[]) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Adds the values in the array vals to the end of the list, in order.
add(double[], int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Adds a subset of the values in the array vals to the end of the list, in order.

B

binarySearch(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Performs a binary search for value in the entire list.
binarySearch(double, int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Performs a binary search for value in the specified range.

C

clear() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Flushes the internal state of the list, resetting the capacity to the default.
com.slimjars.dist.gnu.trove.list - package com.slimjars.dist.gnu.trove.list
 
contains(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list for value

F

fill(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Fills every slot in the list with the specified value.
fill(int, int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Fills a range in the list with the specified value.
forEach(TDoubleProcedure) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Applies the procedure to each value in the list in ascending (front to back) order.
forEachDescending(TDoubleProcedure) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Applies the procedure to each value in the list in descending (back to front) order.

G

get(int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Returns the value at the specified offset.
getNoEntryValue() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Returns the value that is used to represent null.
grep(TDoubleProcedure) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list for values satisfying condition in the manner of the *nix grep utility.

I

indexOf(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list front to back for the index of value.
indexOf(int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list front to back for the index of value, starting at offset.
insert(int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Inserts value into the list at offset.
insert(int, double[]) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Inserts the array of values into the list at offset.
insert(int, double[], int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Inserts a slice of the array of values into the list at offset.
inverseGrep(TDoubleProcedure) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list for values which do not satisfy condition.
isEmpty() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Tests whether this list contains any values.

L

lastIndexOf(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list back to front for the last index of value.
lastIndexOf(int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Searches the list back to front for the last index of value, starting at offset.

M

max() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Finds the maximum value in the list.
min() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Finds the minimum value in the list.

R

remove(double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Removes value from the list.
remove(int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Removes length values from the list, starting at offset
removeAt(int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Removes value at a given offset from the list.
replace(int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Sets the value at the specified offset and returns the previously stored value.
reverse() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Reverse the order of the elements in the list.
reverse(int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Reverse the order of the elements in the range of the list.

S

set(int, double) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Sets the value at the specified offset.
set(int, double[]) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Replace the values in the list starting at offset with the contents of the values array.
set(int, double[], int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Replace the values in the list starting at offset with length values from the values array, starting at valOffset.
shuffle(Random) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Shuffle the elements of the list using the specified random number generator.
size() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Returns the number of values in the list.
sort() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Sort the values in the list (ascending) using the Sun quicksort implementation.
sort(int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Sort a slice of the list (ascending) using the Sun quicksort implementation.
subList(int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Returns a sublist of this list.
sum() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Calculates the sum of all the values in the list.

T

TDoubleList - Interface in com.slimjars.dist.gnu.trove.list
Interface for Trove list implementations.
toArray() - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Copies the contents of the list into a native array.
toArray(int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Copies a slice of the list into a native array.
toArray(double[]) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Copies a slice of the list into a native array.
toArray(double[], int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Copies a slice of the list into a native array.
toArray(double[], int, int, int) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Copies a slice of the list into a native array.
transformValues(TDoubleFunction) - Method in interface com .slimjars .dist .gnu .trove .list . TDoubleList
Transform each value in the list using the specified function.
A  B  C  F  G  I  L  M  R  S  T