This documentation is out of date.

The new version of the documentation is here: https://cannylogic.com/docs

Difference between revisions of "Bitwise AND"

From CANNY Wiki
Jump to: navigation, search
[unchecked revision][unchecked revision]
m (minor edit)
 
Line 41: Line 41:
  
 
<div>
 
<div>
Bitwise logical multiplication (conjunction). Set the output value as a result of logical multiplying, applied to each pair of bits, which are at the same positions in the binary representation of the input values.
+
A function block used for bitwise logical multiplication (conjunction). Sets the output value to be the result of logical multiplication, that is applied to each pair of bits located at the same position in the binary representation of input values.
 
</div>
 
</div>
 
</div>
 
</div>
 
<br clear="left">
 
<br clear="left">
In other words, the resulting bit is equal to:
+
In other words, the resulting bit of the output value is equal to:
* "1" if both respective bits of input value are equal to "1";
+
* "1" if both respective bits of the input values are equal to "1";
 
* "0" if at least one bit of the pair is "0".
 
* "0" if at least one bit of the pair is "0".
  
Line 80: Line 80:
 
== Features ==
 
== Features ==
  
Operation 'Bitwise AND' is used to [//en.wikipedia.org/wiki/Mask_(computing) mask] — select specific bits or fields of several bits of binary number.
+
Operation 'Bitwise AND' is used to [//en.wikipedia.org/wiki/Mask_(computing) mask] — to select specific bits or fields from several bits of a binary number.
  
 
== Examples ==
 
== Examples ==

Latest revision as of 17:31, 13 December 2020

Appearance
5 4 1 2.png
Symbol
X & Y
Group
Bitwise operators
Inputs
Value X: Integer
Value Y: Integer
Outputs
Result: Integer
Version CANNY Lab
from 0.6b
Icon

A function block used for bitwise logical multiplication (conjunction). Sets the output value to be the result of logical multiplication, that is applied to each pair of bits located at the same position in the binary representation of input values.


In other words, the resulting bit of the output value is equal to:

  • "1" if both respective bits of the input values are equal to "1";
  • "0" if at least one bit of the pair is "0".

For example:

Value X = 27 = 0x001B = 0b0000000000011011
Value Y = 58 = 0x003A = 0b0000000000111010
Result = 26 = 0x001A = 0b0000000000011010

Features

Operation 'Bitwise AND' is used to mask — to select specific bits or fields from several bits of a binary number.

Examples

As decimal
As binary

See also

Bitwise OR

Bitwise exclusive OR

Bitwise Inversion

Left shift

Right shift

Left rotation

Right rotation

Built-in Function Blocks