public interface DoublesModifiable extends Doubles
Modifier and Type | Method and Description |
---|---|
void |
append(double v) |
void |
append(double[] vs) |
void |
append(double[] vs,
int from,
int to) |
void |
append(DoubleBuffer vs) |
void |
append(DoubleBuffer vs,
int c) |
void |
append(Doubles vs) |
void |
append(Doubles vs,
int from,
int to) |
void |
clear() |
void |
compact() |
void |
ensureCapacity(int minCapacity) |
void |
insert(int i,
double v) |
void |
insert(int i,
double[] vs) |
void |
insert(int i,
double[] vs,
int from,
int to) |
void |
insert(int i,
DoubleBuffer vs) |
void |
insert(int i,
DoubleBuffer vs,
int c) |
void |
insert(int i,
Doubles vs) |
void |
insert(int i,
Doubles vs,
int from,
int to) |
void |
prepend(double v) |
void |
prepend(double[] vs) |
void |
prepend(double[] vs,
int from,
int to) |
void |
prepend(DoubleBuffer vs) |
void |
prepend(DoubleBuffer vs,
int c) |
void |
prepend(Doubles vs) |
void |
prepend(Doubles vs,
int from,
int to) |
void |
remove(double v)
Removes a single copy of the specified value.
|
void |
removeIndex(int index)
Remove value at index.
|
void |
removeRange(int from,
int to)
Removes values starting at index from (inclusive) to index to (exclusive).
|
void |
set(int i,
double v) |
void |
set(int i,
double[] vs) |
void |
set(int i,
double[] vs,
int from,
int to) |
void set(int i, double v)
void set(int i, double[] vs)
void set(int i, double[] vs, int from, int to)
void insert(int i, double v)
void insert(int i, double[] vs)
void insert(int i, Doubles vs)
void insert(int i, DoubleBuffer vs)
void insert(int i, double[] vs, int from, int to)
void insert(int i, Doubles vs, int from, int to)
void insert(int i, DoubleBuffer vs, int c)
void append(double v)
void append(double[] vs)
void append(Doubles vs)
void append(DoubleBuffer vs)
void append(double[] vs, int from, int to)
void append(Doubles vs, int from, int to)
void append(DoubleBuffer vs, int c)
void prepend(double v)
void prepend(double[] vs)
void prepend(Doubles vs)
void prepend(DoubleBuffer vs)
void prepend(double[] vs, int from, int to)
void prepend(Doubles vs, int from, int to)
void prepend(DoubleBuffer vs, int c)
void remove(double v)
void removeRange(int from, int to)
void removeIndex(int index)
void clear()
void ensureCapacity(int minCapacity)
void compact()
Copyright © 2013 Metron, Inc.. All rights reserved.