Overview | Methods | This Package | All Packages
Reads the specified number of doubles from this stream into a double array.
Syntax
public double[] readDoubles( int count )
public void readDoubles( double[] buffer, int index, int count )
Parameters
count
The number of double values to read.
buffer
The array to read data into.
index
The starting index in the array.
Return Value
Returns a double array containing the data that was read.
Remarks
This method implements the IDataStream.readDoubles method. This method validates the arguments and then calls the readCore method to read the data.