[jawsscripts] Re: Exclusive Or

  • From: "Snowman" <snowman@xxxxxxxxxxxxxxxx>
  • To: <jawsscripts@xxxxxxxxxxxxx>
  • Date: Wed, 1 Apr 2020 23:30:15 -0500

that is interesting.  I wonder what is the use for that in jaws script land.
you are saying that it converts a number in base ten over to the equivalend 
in a new base.
5 in base ten, decimal,  is 101 in binary etc.
However you learned that, Thanks for the explanation.



+--------------------------------------------------------------------------+
Listen to The Snowman on MushroomFM.com, Saturday evenings, 8PM Eastern 
time.
60's and 70's tunes, and gently conservative talk.

----- Original Message ----- 
From: "Artur Räpp" <rtr@xxxxxxxxx>
To: <jawsscripts@xxxxxxxxxxxxx>
Sent: Wednesday, April 01, 2020 5:38 PM
Subject: [jawsscripts] Re: Exclusive Or


Hi,

It seems that^ converts decimal numbers to new system
5 ^ 2 = 101 (binary), 5 ^ 3 = 12, 5 ^ 4 = 11, 5 ^ 5 = 10 and 5 ^ 6 and 
greater = 5.

You can use following formula too if you wish
var
int a = 5,
int b = 4
(a|b)-(a&b)

Artur
rtr@xxxxxxxxx
-----Original Message-----
From: jawsscripts-bounce@xxxxxxxxxxxxx <jawsscripts-bounce@xxxxxxxxxxxxx> On 
Behalf Of Snowman
Sent: Thursday, April 2, 2020 1:00 AM
To: jawsscripts@xxxxxxxxxxxxx
Subject: [jawsscripts] Exclusive Or

I was surprised to find that jaws script still does not have an exclusive 
or, operator.
Am I missing something?
I just want to toggle a bit.
The following code:
d = 1
d = d ^ 2

should toggle bit 2, and result in d = 3 It compiles, but it also clears bit 
0, resulting in d=2

so, basically d=d^2  is the same as d=2
Who knows that the heck that caret means to jaws in that context.  but, it 
does compile.

Years ago,  I had to come up with a work around, and I am a bit surprised to 
see that the workaround is apparently still necessary.

d = d & (0-iMask)-1


Is that still the way you have to do this?




+--------------------------------------------------------------------------+
Listen to The Snowman on MushroomFM.com, Saturday evenings, 8PM Eastern 
time.
60's and 70's tunes, and gently conservative talk.

__________�

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts


__________�

View the list's information and change your settings at
http://www.freelists.org/list/jawsscripts

__________�

View the list's information and change your settings at 
http://www.freelists.org/list/jawsscripts

Other related posts: