Retro video games delivered to your door every month!
Click above to get retro games delivered to your door ever month!
X-Hacker.org- The Guide To Clipper - <b>.and. logical and -- binary (logical)</b> http://www.X-Hacker.org [<<Previous Entry] [^^Up^^] [Next Entry>>] [Menu] [About The Guide]
.AND.          Logical AND -- binary                      (Logical)


Syntax:        <condition1> .AND. <condition2>

Type:          Logical

Operands:      <condition1> and <condition2> are expressions
               that evaluate to logical type.

Description:   The .AND. operator is a binary logical operator that
               executes a logical AND operation using the following
               rules:

               . Returns true (.T.) if both <condition1> and
                 <condition2> evaluate to true (.T.)

               . Returns false (.F.) if either <condition1> or
                 <condition2> evaluate to false (.F.)


----------------------------------- Examples -------------------------------

   ? .T. .AND. .T.                      && Result: .T.
   ? .T. .AND. .F.                      && Result: .F
   ? .F. .AND. .T.                      && Result: .F.
   ? .F. .AND. .F.                      && Result: .F.

See Also: .NOT. .OR. Expr_error()

Online resources provided by: http://www.X-Hacker.org --- NG 2 HTML conversion by Dave Pearson