And

From Lazarus wiki
Revision as of 14:37, 3 November 2018 by Kai Burghardt (talk | contribs) (→‎Bitwise operation: remove non-typical usage example (now is power of two))
Jump to navigationJump to search

Deutsch (de) English (en) español (es) suomi (fi) français (fr) русский (ru)

Boolean operation

Boolean And produces a value of true if and only if both of its Boolean operands are true.

Truth table

A B A and B
  false     false     false
  false   true   false
  true   false   false
  true   true   true

Bitwise operation

Logical And (aka Bitwise And) requires ordinal operands and sets a bit in the result variable to 1 if and only if both of the corresponding bits in the operands are 1.

See also