Byte Module
Provides functions for handling a byte value. See also: System.Byte
Functions and values
| Function or value |
Description
|
Full Usage:
Byte.isControl b
Parameters:
byte
Returns: bool
|
Check if a byte is a control character.
|
Full Usage:
Byte.isNull b
Parameters:
byte
Returns: bool
|
Check if a byte is null.
|
Full Usage:
Byte.isPrintable b
Parameters:
byte
Returns: bool
|
Check if a byte is printable.
|
Full Usage:
Byte.isWhitespace b
Parameters:
byte
Returns: bool
|
Check if a byte is a whitespace.
|
Full Usage:
Byte.toDisplayChar b
Parameters:
byte
Returns: string
|
Get a display character for a byte used in B2R2. A null byte is represented as a dot, a printable byte is represented as an ASCII character, a whitespace is represented as an underscore, and a control character is represented as an asterisk.
|
B2R2