And

From MultiCharts
Revision as of 11:59, 18 January 2012 by 194.84.116.138 (talk) (Created page with "A logical (Boolean) operator that returns <syntaxhighlight>True</syntaxhighlight> only if both of its operands are true. Logical operators are used in logical (Boolean) expres...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

A logical (Boolean) operator that returns

True

only if both of its operands are true. Logical operators are used in logical (Boolean) expressions that operate with true/false values.

Usage

E1 And E2

Where:

E

- true/false expressions

Example

2=1

And

2=2 will return a value of

False 

True And True And True

will return a value of

True