@etothepii/satisfactory-file-parser
Preparing search index...
BinaryReadable
Interface BinaryReadable
Describes the ability to read bytes in different forms.
interface
BinaryReadable
{
alignment
:
Alignment
;
getBufferLength
:
()
=>
number
;
getBufferPosition
:
()
=>
number
;
getBufferProgress
:
()
=>
number
;
readByte
:
()
=>
number
;
readBytes
:
(
count
:
number
)
=>
Uint8Array
;
readDouble
:
()
=>
number
;
readFloat32
:
()
=>
number
;
readHex
:
(
count
:
number
)
=>
string
;
readInt16
:
()
=>
number
;
readInt32
:
()
=>
number
;
readInt64
:
()
=>
bigint
;
readInt8
:
()
=>
number
;
readString
:
()
=>
string
;
readUint16
:
()
=>
number
;
readUint32
:
()
=>
number
;
readUint64
:
()
=>
bigint
;
readUint8
:
()
=>
number
;
skipBytes
:
(
count
?:
number
)
=>
void
;
jumpTo
(
position
:
number
)
:
void
;
}
Hierarchy (
View Summary
)
BinaryOperable
BinaryReadable
Implemented by
ByteReader
Index
Properties
alignment
get
Buffer
Length
get
Buffer
Position
get
Buffer
Progress
read
Byte
read
Bytes
read
Double
read
Float32
read
Hex
read
Int16
read
Int32
read
Int64
read
Int8
read
String
read
Uint16
read
Uint32
read
Uint64
read
Uint8
skip
Bytes
Methods
jump
To
Properties
alignment
alignment
:
Alignment
get
Buffer
Length
getBufferLength
:
()
=>
number
get
Buffer
Position
getBufferPosition
:
()
=>
number
get
Buffer
Progress
getBufferProgress
:
()
=>
number
read
Byte
readByte
:
()
=>
number
read
Bytes
readBytes
:
(
count
:
number
)
=>
Uint8Array
read
Double
readDouble
:
()
=>
number
read
Float32
readFloat32
:
()
=>
number
read
Hex
readHex
:
(
count
:
number
)
=>
string
read
Int16
readInt16
:
()
=>
number
read
Int32
readInt32
:
()
=>
number
read
Int64
readInt64
:
()
=>
bigint
read
Int8
readInt8
:
()
=>
number
read
String
readString
:
()
=>
string
read
Uint16
readUint16
:
()
=>
number
read
Uint32
readUint32
:
()
=>
number
read
Uint64
readUint64
:
()
=>
bigint
read
Uint8
readUint8
:
()
=>
number
skip
Bytes
skipBytes
:
(
count
?:
number
)
=>
void
Methods
jump
To
jumpTo
(
position
:
number
)
:
void
Parameters
position
:
number
Returns
void
Settings
Member Visibility
Protected
Inherited
External
Theme
OS
Light
Dark
On This Page
Properties
alignment
get
Buffer
Length
get
Buffer
Position
get
Buffer
Progress
read
Byte
read
Bytes
read
Double
read
Float32
read
Hex
read
Int16
read
Int32
read
Int64
read
Int8
read
String
read
Uint16
read
Uint32
read
Uint64
read
Uint8
skip
Bytes
Methods
jump
To
@etothepii/satisfactory-file-parser
Loading...
Describes the ability to read bytes in different forms.