2
votes
2answers
60 views

Apply logical and

I have an expression: (map some-proc some-list) which evaluates to, say, '(#f #f #f). I want to check whether all booleans in this list are true. However, (and '(#f #f #f)) returns '(#f #f #f), ...
9
votes
6answers
492 views

Checking the “boolean” result of an “int” type

I'm learning java, coming from C and I found an interesting difference between languages with the boolean type. In C there is no bool/ean so we need to use numeric types to repersent boolean logic (0 ...
2
votes
3answers
59 views

Is !$festive the same as $festive==FALSE?

I have a doubt with a few lines of PHP. I have the following code: // returns TRUE if a day is festive, FALSE otherwise $festive = isFestive(); // $workingDay = $d>0 && !$festive; Is ...
0
votes
6answers
90 views

Self logical and?

The answer may be obvious for some of you, but as I can't find the answer, I need to ask it. Oftenly, if a function has to return whether all was executed without problems, I use a boolean that track ...
0
votes
7answers
403 views

Defining double exclamation?

I understand what a double exclamation mark does (or I think I understand) but I am not sure how it is defined on a random object. For example in the code snippet below: Assignment *a; if ...
-1
votes
3answers
86 views

Which is more efficient: binary & or logical &&

When all values are boolean doesn't the binary & operate on more bits than the logical &&? For example if ( foo == "Yes" & 2 != 0 & 6 ) or if ( foo == "Yes" && 2 != 0 ...
2
votes
1answer
255 views

Logical operator || in javascript, 0 stands for Boolean false?

I happened to know the following code Here is the code, and very simple: var test = 0 || -1 ; console.log(test); then the output in the console is -1 and somehow i am really new into the ...
0
votes
3answers
716 views

Compound boolean expressions in Prolog

In Prolog, how do you implement compound logical predicates like (A and B) or (C and D)? This may seem like a simple question but many approachable online tutorials are not detailed enough on boolean ...
1
vote
2answers
150 views

Are the expressions (!b) and (b==false) equivalent in Java?

Given that b is a boolean variable, are the expressions (!b) and (b==false) the same? Here's where I'm at so far with this question: !b -- returns a [FALSE response if b is true] or a [TRUE ...
14
votes
5answers
2k views

Is there any difference between && and & with bool(s)?

In C++, is there any difference between doing && (logical) and & (bitwise) between bool(s)? bool val1 = foo(); bool val2 = bar(); bool case1 = val1 & val2; bool case2 = val1 ...
3
votes
3answers
245 views

Can I simplify this conditional statement, which uses the logical negation operator?

Sorry if this is a "Logical Operators 101" kind of question. I've been staring at my screen for 15 minutes trying to wrap my head around it, but I'm stuck. Is there a more concise/elegant way to ...