sh_right()
Calculates right bit shifted values. The original value of the 1st argument is bit shifted to the right as many times as requested by the 2nd argument and the result of this bit shift operation is returned by this function.
Function Prototype
sh_right(number, shifts)
Arguments
Argument Name | Data Type | Description |
---|---|---|
number |
Integer Number | Original input value to be shifted. [required] |
shifts |
Integer Number | Amount of times the original value should be shifted to the right. [required] |
Return Value
Data Type | Description |
---|---|
Integer Number | Bit shifted result. |
Remarks
This functions accepts finalness for its argument number
.
The return value's finalness will be identical to number
's one.
Examples
- on init
- message("sh_right(128,0) = " & sh_right(128,0))
- message("sh_right(128,1) = " & sh_right(128,1))
- message("sh_right(128,2) = " & sh_right(128,2))
- message("sh_right(128,3) = " & sh_right(128,3))
- end on
See also
Availability
Since LinuxSampler 2.0.0.svn22.
Document Updated: 2019-12-28 | Author: Christian Schoenebeck