gnu.lists
public class F64Vector extends SimpleVector implements Externalizable, Comparable
| Field Summary | |
|---|---|
| protected static double[] | empty |
| Constructor Summary | |
|---|---|
| F64Vector() | |
| F64Vector(int size, double value) | |
| F64Vector(int size) | |
| F64Vector(double[] data) | |
| F64Vector(Sequence seq) | |
| Method Summary | |
|---|---|
| protected void | clearBuffer(int start, int count) |
| int | compareTo(Object obj) |
| boolean | consumeNext(int ipos, Consumer out) |
| void | consumePosRange(int iposStart, int iposEnd, Consumer out) |
| double | doubleAt(int index) |
| double | doubleAtBuffer(int index) |
| Object | get(int index) |
| protected Object | getBuffer() |
| Object | getBuffer(int index) |
| int | getBufferLength() Get the allocated length of the data buffer. |
| int | getElementKind() |
| String | getTag() |
| int | intAtBuffer(int index) |
| void | readExternal(ObjectInput in) |
| Object | setBuffer(int index, Object value) |
| void | setBufferLength(int length) |
| void | setDoubleAt(int index, double value) |
| void | setDoubleAtBuffer(int index, double value) |
| void | writeExternal(ObjectOutput out) |
Serial Data: Write 'size' (using writeInt), followed by 'size' elements in order (using writeDouble).