This documentation is out of date.
The new version of the documentation is here: https://cannylogic.com/docs |
Difference between revisions of "Left rotation"
[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;"|[[ | + | |colspan="2" align="center" style="padding:10px;"|[[File:5_4_5_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;"> | ||
− | [[ | + | [[File:5_4_7_1.png|left|Icon]] |
</div> | </div> | ||
Line 80: | Line 80: | ||
== Examples == | == Examples == | ||
{| | {| | ||
− | |[[ | + | |[[File:5_4_7_3.png|thumb|400px|As decimal]] |
− | |[[ | + | |[[File:5_4_7_4.png|thumb|500px|As binary]] |
|} | |} | ||
Revision as of 17:59, 23 November 2015
Appearance | |
---|---|
Symbol | |
RSL | |
Group | |
Bitwise operators | |
Inputs | |
Value: | Integer |
Shift, bits: | Integer |
outputs | |
Result: | Integer |
Version CANNY Lab | |
from 1.8b |
Circular shift to the left. Set the output result as the logical left shift in binary representation of the input "Value", the number of bits to shift specified by the input "Shift, bits", while leaving bit appears in place of free pop spot on the other end of the number .
In other words, the result is equivalent to the result of copying each bit in binary representation of input "value" to its left position, to the number of times specified by the value of the input "Shift, bits". Thus, least significant (right-most) bit in the binary representation each time will have a value equal to the outgoing (most significant, extending to the left) bit of input value.
For example:
Value | = | 51000 | = | 0xC738 | = | 0b1100011100111000 |
Shift, bits | = | 2 | ||||
Result | = | 7395 | = | 0x1CE3 | = | 0b0001110011100011 |
Features
Circular shift of 16-bit value in either direction for 8-bit, reverses its upper and lower bytes.