From b57f43ce925108a1cb098d2c4a2bf3111779f2f6 Mon Sep 17 00:00:00 2001 From: kichik Date: Tue, 28 Sep 2004 21:25:08 +0000 Subject: [PATCH] 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 --- Docs/src/int.but | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/Docs/src/int.but b/Docs/src/int.but index aca4bead..65ed5c2d 100644 --- a/Docs/src/int.but +++ b/Docs/src/int.but @@ -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)