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]
Line 6: Line 6:
 
!colspan="2" style="background-color:#AFEEEE;"|Appearance
 
!colspan="2" style="background-color:#AFEEEE;"|Appearance
 
|-
 
|-
|colspan="2" align="center" style="padding:10px;"|[[Изображение:5_4_1_2.png]]
+
|colspan="2" align="center" style="padding:10px;"|[[File:5_4_1_2.png]]
 
|-
 
|-
 
!colspan="2" style="background-color:#AFEEEE;"|Symbol
 
!colspan="2" style="background-color:#AFEEEE;"|Symbol
Line 37: Line 37:
 
<div style="min-height:100%;display:block;">
 
<div style="min-height:100%;display:block;">
 
<div style="float:left;width:70px;">
 
<div style="float:left;width:70px;">
[[Изображение:5_4_1_1.png|left|Иконка]]
+
[[File:5_4_1_1.png|left|Icon]]
 
</div>
 
</div>
  
Line 84: Line 84:
 
== Examples ==
 
== Examples ==
 
{|
 
{|
|[[Изображение:5_4_1_3.png|thumb|400px|Десятичное представление]]
+
|[[File:5_4_1_3.png|thumb|400px|As decimal]]
|[[Изображение:5_4_1_4.png|thumb|500px|Двоичное представление]]
+
|[[File:5_4_1_4.png|thumb|500px|As binary]]
 
|}
 
|}
  

Revision as of 17:50, 23 November 2015

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

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.


In other words, the resulting bit is equal to:

  • "1" if both respective bits of input value 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 — select specific bits or fields of several bits of 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