com.livecode.bitwise | |
Type | module |
Dictionary | LCB |
Library | LiveCode Builder |
Associations | com.livecode.bitwise |
Summary | This module specifies the bitwise operations on integers included in the standard library of LiveCode Builder. |
Description | This module specifies the bitwise operations on integers included in the standard library of LiveCode Builder. |
Type | Name | Summary | Syntax |
---|---|---|---|
module | com.livecode.bitwise | This module specifies the bitwise operations on integers included in the standard library of LiveCode Builder. | |
operator | BitwiseAnd | Performs a bitwise AND operation on the binary representations of Left and Right. | <Left> bitwise and <Right> |
- - - | BitwiseNot | Performs a bitwise NOT operation on the binary representation of Operand. | bitwise not <Operand> |
- - - | BitwiseOr | Performs a bitwise OR operation on the binary representations of Left and Right. | <Left> bitwise or <Right> |
- - - | BitwiseShiftLeft | Shifts the bits of Operand left. | <Operand> shifted left by <Shift> bitwise |
- - - | BitwiseShiftRight | Shifts the bits of Operand right. | <Operand> shifted right by <Shift> bitwise |
- - - | BitwiseXor | Performs a bitwise XOR operation on the binary representations of Left and Right. | <Left> bitwise xor <Right> |