The tag has no wiki summary.

learn more… | top users | synonyms

18
votes
7answers
10k views

Shortcut “or-assignment” (|=) operator in Java

I have a long set of comparisons to do in Java, and I'd like to know if one or more of them come out as true. The string of comparisons was long and difficult to read, so I broke it up for ...
24
votes
3answers
12k views

R - boolean operators && and ||

According to the R language definition the difference between & and && (correspondingly | and ||) is that the former is vectorized while the later is not. According to this site: ...
47
votes
4answers
1k views

The behaviour of the or operator in PHP

I'm trying to understand the behavior of or operator. Please see the below examples: $e = false || true; var_dump($e); Output is as expected: bool(true); $f = false or true; var_dump($f); ...
12
votes
4answers
2k views

or is not valid C++ : why does this code compile?

Here is a very simple C++ application I made with QtCreator : int main(int argc, char *argv[]) { int a = 1; int b = 2; if (a < 1 or b > 3) { return 1; } return ...
6
votes
8answers
6k views

PHP “or” Syntax

I've seen this a lot: $fp = fopen($filepath, "w") or die(); But I can't seem to find any real documentation on this "or" syntax. It's obvious enough what it does, but can I use it anywhere? And must ...
1
vote
6answers
350 views

Why does `letter==“A” or “a”` always evaluate to True?

Please look at the code. I'm using a robot car to draw a letter and in this code, when I type b, it will still draw small case a. import create # Draw a: def drawa(): #create robot robot = ...