com.livecode.bitwise

Typemodule
DictionaryLCB
LibraryLiveCode Builder
Associationscom.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.

TypeNameSummarySyntax
modulecom.livecode.bitwise

This module specifies the bitwise operations on integers included in the standard library of LiveCode Builder.

operatorBitwiseAnd

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>