Monadische Scriptoperatoren
Posted: 22 Oct 2014 12:59
foo++;
++foo;
foo*=10;
foo|=15; // foo=foo|15 bitwise OR
foo^=7; // foo=foo^7 bitwise AND
foo<<=3; // foo=foo<<3
foo>>=3;
...
Noticing that there are no bitwise and, or, xor,
I'd suggest to add those too, in both their
monadic and duadic form.
++foo;
foo*=10;
foo|=15; // foo=foo|15 bitwise OR
foo^=7; // foo=foo^7 bitwise AND
foo<<=3; // foo=foo<<3
foo>>=3;
...
Noticing that there are no bitwise and, or, xor,
I'd suggest to add those too, in both their
monadic and duadic form.