IDataStream.writeDoubles

Overview | Methods | This Package | All Packages

IDataStream.writeDoubles

Writes the contents of the specified double array to this stream.

Syntax

public void writeDoubles( double[] buffer )

public void writeDoubles( double[] buffer, int index, int count )

Parameters

buffer

The double array containing the data to write.

index

The starting index in the array.

count

The number of doubles to write.

Exceptions

IOException If an I/O error occurs or if the stream does not support writing.

Remarks

The number of bytes written to the stream is buffer.length * 8. The current position is advanced by count * 8 bytes.

See Also   readDoubles