TYPE: VOP
TITLE: And VOP

This operator performs a logical "and" operation between its inputs and
returns 1 (if all inputs are non-zero) or 0 (if at least one input is zero).

Typically, "and" is used as an input to conditional operators such as If and
While. All inputs and the output data type are integers.

Inputs:
    Input Number 1...N - The input values to be combined together.
    Next Input         - Where the next input value should be connected.
                         Up to 64 inputs can be specified.

Outputs:
    Combined Value     - The logical "and" combination of all inputs.

See also: Or, Not, Compare, If, While
