Difference between revisions of "MC-Basic:SHL"

From SoftMC-Wiki
Jump to: navigation, search
m (Miborich moved page Axystems:MC-Basic:SHL to MC-Basic:SHL: Global renaming of Axystems: namespace into (Main):)
Line 42: Line 42:
  
 
|SEE ALSO=
 
|SEE ALSO=
* [[Axystems:MC-Basic:SHR|SHR]]
+
* [[MC-Basic:SHR|SHR]]
  
  
 
}}
 
}}

Revision as of 08:40, 22 May 2014

SHL (shift left) shifts each bit in <Number> N places to the left. N zeros are shifted into the N rightmost positions.

Syntax

<Number> SHL <N>

Availability

Since Version 3.6.20

Type

<returnvalue>:Long
<Number>:Long
<N>: Long

Range

<Number>: - MaxLong to MaxLong

<N>:           0 to 31

Scope

Configuration, Task or Terminal

Examples

-->?  16 SHL   3

128

See Also