And Operator
Used to perform a logical conjunction on two expressions.
Synopsis
result = expression1 And expression2
Arguments
The And operator syntax has these parts:
result | Any numeric variable. |
expression1 | Any expression. |
expression2 | Any expression. |
Description
If, and only if, both expressions evaluate to True, result is True. If either expression evaluates to False, result is False. The following table illustrates how result is determined:
If expression1 Is | If expression2 Is | The result Is |
---|---|---|
True | True | True |
True | False | False |
False | True | False |
False | False | False |
See Also
Purpose of this instance: Draft documentation
DocReleaseID: Core2018.1.11
Content loaded from:
/staging/ce/2018.1.11/doc/cache/en-us/src/
/staging/ce/2018.1.11/doc/ensemble/en-us/src/
/staging/ce/2018.1.11/doc/isp/en-us/src/
/staging/learning/zenmojo-doc/en-us/src/