BooleanIsNotEqualToBoolean |
Type | operator |
Dictionary | LCB |
Library | LiveCode Builder |
Syntax | <Left> is not <Right>
|
Associations | com.livecode.logic |
Summary | Determines whether Left and Right are equal or not.
|
Parameters | Name | Type | Description |
---|
Left | | An expression which evaluates to a boolean value.
|
Right | | An expression which evaluates to a boolean value.
|
|
Example | variable tBool is bool
put true is not false into tBool
|
Values | Name | Type | Description |
---|
return | | Returns true if Left evaluates to the opposite boolean value as Right.
|
|
Description | Determines whether Left and Right are equal or not.
|
Tags | logic |