Rebol Programming/shift
USAGE:
editSHIFT data bits /left /logical /part length
DESCRIPTION:
editPerform a bit shift operation. Right shift (decreasing) by default.
SHIFT is a native value.
ARGUMENTS
edit- data -- (Type: integer binary)
- bits -- Number of bits to shift (Type: integer)
REFINEMENTS
edit- /left -- Shift bits to the left (increasing)
- /logical -- Use logical shift (unsigned, fill with zero)
- /part -- Shift only part of a series.
- length -- (Type: integer)
SOURCE CODE
editshift: native[ {Perform a bit shift operation. Right shift (decreasing) by default.} data [integer! binary!] bits [integer!] "Number of bits to shift" /left "Shift bits to the left (increasing)" /logical "Use logical shift (unsigned, fill with zero)" /part "Shift only part of a series." length [integer!] ]