A byte array using fast "alchemy-memory" for data storage.
Constructor
Variables
Methods
Static methods
staticofArray (input:Array<Int>, ?min:Int, ?max:Int):ByteMemory
Converts input in the range [min, max] to a ByteMemory object.
If no range is specified, all input bytes are copied.
staticofByteArray (input:ByteArray, ?min:Int, ?max:Int):ByteMemory
Converts input in the range [min, max] to a ByteMemory object.
If no range is specified, all input bytes are copied.
staticofBytesData (input:BytesData, ?min:Int, ?max:Int):ByteMemory
Converts input in the range [min, max] to a ByteMemory object.
If no range is specified, all input bytes are copied.
staticofVector (input:Vector<Int>, ?min:Int, ?max:Int):ByteMemory
Converts input in the range [min, max] to a ByteMemory object.
If no range is specified, all input bytes are copied.
statictoArray (input:ByteMemory, ?min:Int, ?max:Int):Array<Int>
Converts input in the range [min, max] to an array.
If no range is specified, all input bytes are copied.
statictoByteArray (input:ByteMemory, ?min:Int, ?max:Int):ByteArray
Converts input in the range [min, max] to a byte array.
If no range is specified, all input bytes are copied.
The bytes are written in little endian format.
statictoBytesData (input:ByteMemory, ?min:Int, ?max:Int):BytesData
Converts input in the range [min, max] to a BytesData object.
If no range is specified, all input bytes are copied.
The bytes are written in little endian format.
statictoVector (input:ByteMemory, ?min:Int, ?max:Int, ?out:Vector<Int>):Vector<Int>
Converts input in the range [min, max] to a Vector object.
If no range is specified, all input bytes are copied.
Parameters:
out | the |
|---|