3
votes
5answers
228 views
how to perform bitwise operation on floating point numbers
i tried this:
float a = 1.4123;
a = a & (1 << 3);
i get a compiler error saying that operand to & cannot be of type float.
when i do:
float a = 1.4123;
a = (int) …
4
votes
3answers
123 views
Effect of a Bitwise Operator on a Boolean in Java
The bitwise operators are supposed to travel the variables and operate on the bit by bit. In the case of integers, longs, chars this makes sense. These variables can contain the …
0
votes
1answer
18 views
How do I pre preform bit operations in glsl.
How do I pre preform bit operations in glsl? Using the regular C style bitwise operators |, &, ^, or ! do not work.
3
votes
3answers
111 views
Finding if a number is the power of 2 in Scheme
I'm fairly new to Scheme and am attempting to learn it on my own from scratch. I'm stuck on the syntax of this problem. I know that if I want to find out if a number is a power of …
0
votes
10answers
222 views
Would you ever want to use bitwise operators in javascript?
One of the main ideas behind using bitwise operators in languages like C++/java/C# is that they're extremely fast. But I've heard that in javascript they're very slow (is this true …
4
votes
7answers
328 views
What does the “|” in “int style = SWT.APPLICATION_MODAL | SWT.OK;” do (and how to Google it)?
I can't search for | in Google. If you had found it in a software source code that you are trying to interpret, you didn't know what it does and you couldn't ask other people for h …
0
votes
3answers
188 views
Looking for real world examples of bitwise operations in PHP
Hey guys!
I've been looking at bitwise operations as a way of speeding things up in critical areas. But most of what I find are just low level explanations.
Would anyone be so ki …
0
votes
1answer
81 views
Optimizing bitwise filtering in SQL
I am implementing a bitwise filter using SQL, and I want to see if the following optimization is always valid in all cases, and I'm not sure how to prove it.
My goal is to limit th …
2
votes
6answers
549 views
What is the inverse of bitwise AND in C#?
I need to do an inverse calculation, which consists bitwise AND operation,how do I do it?
I tried exclusive OR, but it didn't help.
int i = 254 & 2;
Console.W …
1
vote
4answers
190 views
Looking for a bitwise operator.
Hi.
I have a list of objects of the same class. The order of the list is not important.
What i want to do, is to (using bitwise operations) determine whether i should set some fie …
2
votes
3answers
609 views
Shift operators in PL/SQL
Whether there is an alternative of shift operators in PL/SQL? There is bitand function, but it accepts only *binary_integer*-type arguments. What should i do if i need check up low …
2
votes
3answers
535 views
Bitwise Not Operator (~ in C) with regards to little endian and big endian
This is in relation to a homework assignment but this is not the homework assignment.
I'm having difficultly understanding if there is a difference on how the bitwise not (~ in C …
0
votes
8answers
187 views
C: what is the result of I and ^ operation on char?
There is a piece of code:
int p(char *a, char*b)
{
while (*a | *b)
{
if (*a ^ *b)
//...
}
}
and I don't really know what it's doing.
Edit: I understand what the | …
18
votes
10answers
1k views
A clear, layman’s explanation of the difference between | and || in c# ?
Ok, so I've read about this a number of times, but I'm yet to hear a clear, easy to understand (and memorable) way to learn the difference between:
if (x | y)
and
if (x || y)
…
3
votes
2answers
195 views
Bit operations on Enum
I'm having some problems with the following:
I want to get the first visible AND frozen column of a column collection.
I think this will do it:
DataGridViewColumnCollection dg …
