added shl and shr to IntOp

git-svn-id: https://svn.code.sf.net/p/nsis/code/NSIS/trunk@3674 212acab6-be3b-0410-9dea-997c60f758d6
This commit is contained in:
kichik 2004-09-28 21:25:08 +00:00
parent 8759dcc315
commit b57f43ce92

View file

@ -28,6 +28,10 @@ Combines value1 and (depending on OP) value2 into the user variable $x. OP is de
\b \e{^} BINARY XORs value1 and value2
\b \e{>>} RIGHT SHIFTs value1 by value2
\b \e{<<} LEFT SHIFTs value1 by value2
\b \e{~} BITWISE NEGATEs value1 (i.e. 7 becomes 4294917288)
\b \e{!} LOGICALLY NEGATEs value1 (i.e. 7 becomes 0)