Static member | Description |
Full Usage:
LEB128.DecodeSInt32(bytes)
Parameters:
byte[]
Returns: int32 * int
|
Decode a LEB128-encoded integer into int32. This function returns a tuple of (the decoded int32, and the count of how many bytes were read).
|
|
Decode a LEB128-encoded integer into int32. This function returns a tuple of (the decoded int32, and the count of how many bytes were read).
|
Full Usage:
LEB128.DecodeSInt64(bytes)
Parameters:
byte[]
Returns: int64 * int
|
Decode a LEB128-encoded integer into int64. This function returns a tuple of (the decoded int64, and the count of how many bytes were read).
|
|
Decode a LEB128-encoded integer into int64. This function returns a tuple of (the decoded int64, and the count of how many bytes were read).
|
Full Usage:
LEB128.DecodeUInt32(bytes)
Parameters:
byte[]
Returns: uint32 * int
|
Decode a LEB128-encoded integer into uint32. This function returns a tuple of (the decoded uint32, and the count of how many bytes were read).
|
|
Decode a LEB128-encoded integer into uint32. This function returns a tuple of (the decoded uint32, and the count of how many bytes were read).
|
Full Usage:
LEB128.DecodeUInt64(bytes)
Parameters:
byte[]
Returns: uint64 * int
|
Decode a LEB128-encoded integer into uint64. This function returns a tuple of (the decoded uint64, and the count of how many bytes were read).
|
|
Decode a LEB128-encoded integer into uint64. This function returns a tuple of (the decoded uint64, and the count of how many bytes were read).
|
Full Usage:
LEB128.Max32
Returns: int
|
|
Full Usage:
LEB128.Max64
Returns: int
|
|