fileWriteDouble

Writes a 64-bit double to a file. Takes a file handle and a 64-bit double-precision floating-point value. Returns nothing (void).

File IO

Parameters & Returns

Parameters

fileHandle Int
value Double

Returns

Void

Quick Summary

Writes a 64-bit double to a file. Takes a file handle and a 64-bit double-precision floating-point value. Returns nothing (void).

Technical Exegesis...

Writes a 64-bit double-precision floating-point value to the file at the current position and advances the position by 8 bytes (sizeof(double)). Does nothing if the handle is invalid.

Writes the data in native binary format. Use this for writing binary data files containing floating-point numbers.

Example

Example.bam
; No example implemented yet