Hex Editor - Binary File Editing Software for Windows
Download Hex Editor Neo Hide this button

ShiftOperation Enumeration

The type of the shift operation to perform. See the IDocumentView.shiftOpAsync for more information.

SymbolValueDescription
LogicalLeft0Perform a logical left shift operation: x = x << v.
LogicalRight1Perform a logical right shift operation: x = x >> v.
ArithmeticLeft2Perform an arithmetic left shift operation: x = x << v.
ArithmeticRight3Perform an arithmetic right shift operation: x = x >> v.
RotateLeft4Perform a left rotation operation: x = rotl(x, v).
RotateRight5Perform a right rotation operation: x = rotr(x, v).