variant_and
Performs a bitwise AND operation between two variants
&reftitle.description;
variantvariant_and
mixedleft
mixedright
Performs a bitwise AND operation.
Note that this is slightly different from a regular AND operation.
&reftitle.parameters;
left
The left operand.
right
The right operand.
&com.variant-arith;
&reftitle.returnvalues;
Variant AND Rules
If left is
If right is
then the result is
&true;&true;&true;
&true;&false;&false;
&true;&null;&null;
&false;&true;&false;
&false;&false;&false;
&false;&null;&false;
&null;&true;&null;
&null;&false;&false;
&null;&null;&null;
&reftitle.errors;
Throws a com_exception on failure.
&reftitle.seealso;
variant_or