Byte Type ("M" Reference)
[This is prerelease documentation and is subject to change in future releases. Blank topics are included as placeholders.]
The Byte type encompasses any single binary octet with the format shown in the Code Example section. It is a concrete type.
Operators
The unary operator in the following table takes Byte as a right operand.
Operator | Return |
---|---|
~ |
Byte |
The binary operators in the following table take Byte as a left operand.
Operator | Right Operand | Return |
---|---|---|
<<, >> |
Integer |
Byte |
==, != |
Logical |
Logical |
&, |, ^ |
Byte |
Byte |
Code Example
The following code shows the Memory
field being declared as a Byte type and receiving the value 0x0A.
Memory : Byte = 0x0A;