Lua:doubleToByteTable
Revision as of 00:07, 25 January 2018 by TheyCallMeTim13 (talk | contribs) (moved doubleToByteTable to Lua:doubleToByteTable)
function doubleToByteTable(Number) : table
Converts a QWORD (8 bytes), interpreted as a double precision floating point, to a byte table.
Function Parameters
| Parameter | Type | Description |
|---|---|---|
| Number | number | The number to convert to a byte table |
Examples
local bt = doubleToByteTable(100.0)
writeBytes('00123ABC', bt)
Code:
local bt = doubleToByteTable(10)
for i, v in ipairs(bt) do
print(i - 1, string.format('%02X', v))
end
Output:
0 00 1 00 2 00 3 00 4 00 5 00 6 24 7 40
Code:
local bt = doubleToByteTable(10.9)
for i, v in ipairs(bt) do
print(i - 1, string.format('%02X', v))
end
Output:
0 CD 1 CC 2 CC 3 CC 4 CC 5 CC 6 25 7 40
See also
| Lua |
| Script Engine |
Related Functions
| Read Functions |
|---|
| readBytes |
| readSmallInteger |
| readInteger |
| readQword |
| readPointer |
| readFloat |
| readDouble |
| readString |
| Read Functions (Local Process) |
| readBytesLocal |
| readIntegerLocal |
| readQwordLocal |
| readPointerLocal |
| readFloatLocal |
| readDoubleLocal |
| readStringLocal |
| Write Functions |
| writeBytes |
| writeSmallInteger |
| writeInteger |
| writeQword |
| writeFloat |
| writeDouble |
| writeString |
| Write Functions (Local Process) |
| writeBytesLocal |
| writeIntegerLocal |
| writeQwordLocal |
| writeFloatLocal |
| writeDoubleLocal |
| writeStringLocal |
| Byte Table Conversions (Value → Byte Table) |
| wordToByteTable |
| dwordToByteTable |
| qwordToByteTable |
| floatToByteTable |
| doubleToByteTable |
| stringToByteTable |
| wideStringToByteTable |
| Byte Table Conversions (Byte Table → Value) |
| byteTableToWord |
| byteTableToDword |
| byteTableToQword |
| byteTableToFloat |
| byteTableToDouble |
| byteTableToString |
| byteTableToWideString |