The logical-operators tag has no wiki summary.
1
vote
2answers
737 views
C# - | and & operators?
edit: My main question now is why these two operators need to be overloaded to use the && and || operators. Wouldn't the short-circuit operators take the true or false values of the objects ...
3
votes
4answers
677 views
Logical operators php true or false
As a php neewbie , I try to read a lot of other people“s code in order to learn.
Today I came across a line like this :
if ( stripos($post_to_check->post_content, '[' . $shortcode) !== false )
I ...
5
votes
5answers
3k views
Java Logcial Operators Short Circuiting
Which set is short-circuting,
And what exactly does that mean that the complex conditional expression is short-circuting?
public static void main(String[] args) {
int x, y, z;
x = 10;
y = 20;
...
-5
votes
1answer
63 views
Why are these two queries different?
Display the details of the employees who have subscribed for Football and Chess but not for Tennis.
SELECT *
FROM employee
WHERE empid IN (SELECT empid
FROM subscription
...
0
votes
3answers
1k views
using logical OR operator in a JavaScript case statement
I have two jQuery files- one [newForms_jQuery.js] being called on userNewItemForm and adminNewItemForm, another [editForms_jQuery.js] being called on userEditItemForm and adminEditItemForm.
I'd like ...
16
votes
3answers
1k views
Is it possible to define {$IFDEF} for more than one directive at once?
Is it possible to define more than one conditional in one {$IFDEF} directive ?
I would like to have syntax like this:
{$IFDEF Condition1 OR Condition2} DoSomething; {$ENDIF}
{$IFDEF Condition1 AND ...
2
votes
1answer
241 views
SWI-Prolog How Prolog handles logical comparisons
I have written the following code in SWI-Prolog:
:- dynamic state_a/1 .
:- dynamic state_b/1 .
:- dynamic state_c/1 .
state_a([1,2,3,4,5,0]).
state_b([0]).
chop(LIST,HEAD,TAIL) :- ...
7
votes
5answers
462 views
Database design / normalization structure needs to contain ANDs, ORs, optional elements and their relationships
I want to store the details of college courses in a (MySql) database but I'm not sure how to maintain the relationship between modules and selections.
Basically, a course can have mandatory section, ...
1
vote
3answers
887 views
Logic Evaluator in c# (Evaluate Logical (&& ,|| ) expressions)
In my project there is a Logic evaluation section, it take input as a string which contains logical expressions (true/false) .
I want to evaluate this string and return a final Boolean value.
...
3
votes
2answers
37 views
setting variables using logcial OR
$db_hased_pw = $result["password"] || false;
I understand the usage of this line of code, but WHEN will it evaluate as false?
will $db_hased_pw equal false only when $result["password"] is ...
0
votes
4answers
535 views
Open all links not part of my website in new window with jquery
Im not sure what i have to put in the '???' to make it check if the website is my address or not. Will this also work for google adsense ads(just wondering, but not important)?
I was thinking of ...
1
vote
3answers
651 views
Logical vs bitwise
What the different between logical operators and, or and bitwise analogs &, | in usage? Is there any difference in efficiency in various solutions?
2
votes
3answers
102 views
Are there compilers capable of suggesting optimizations that would absolutely require programmer approval?
Can compilers do more than strict semantically-equivalent optimizations, if we keep the human in the loop?
There are some potential optimizations that are dismissed outright by compilers, because ...
1
vote
1answer
234 views
Use logical OR || to combine two integers?
In this MSDN article on file sharing mode with std::ofstream, Microsoft writes:
To combine the filebuf::sh_read and filebuf::sh_write modes, use the logical OR (||) operator.
Both constants are ...
1
vote
1answer
275 views
Basic logic in MySQL
Our current mysql script that connects our Invoicing software to our website updates stock levels and what not, but there is a field in our products table which dictates if the product is visible or ...
4
votes
2answers
1k views
Logical operator AND with php regular expression
I'd like to use a kind of logical operator "AND" in my regular expression.
I tried this:
(?=exp1)(?=exp2)
But in PHP ?= doesn't work and need to write my program in PHP language. Is there another ...
5
votes
4answers
200 views
Why is {} < function(){}?
While I was messing around with truth tables in JavaScript, I noticed that the following evaluates to true:
var a, b, c;
a = {};
b = function(){};
c = a < b;
console.log(c);
Why?
I've only ...
0
votes
3answers
203 views
Pop not reducing array.length after logical operator
I have this bizzare behavior which I've never seen and don't understand. I'm going through an array using arrayname.length as the control for a while loop. Which normally works as expected but this ...
0
votes
6answers
108 views
how to make a logical OR of an area memory pointed by an array
supposing to have two arrays a[N],b[N] containing only 0 and 1 values, is there a way to calculate c = a || b without a loop like the following (in C)?
#define N 10
char a[N];
char b[N];
char c[N];
...
-1
votes
2answers
389 views
Empty set in javascript
I have implemented a set datatype in javascript based in a generic object type, like this:
function createSetFromList(list) {
var set = { };
for (var i = 0; i < list.length; i++)
...
2
votes
1answer
189 views
What is the difference between short (&,|) and long (&&, ||) forms of AND, OR logical operators in R? [duplicate]
Possible Duplicate:
R: subset() logical-and operator for chaining conditions should be & not &&
What is the difference between short (&,|) and long (&&, ||) forms of ...
8
votes
1answer
238 views
Moving out before brackets with XOR
If I had the sum of products like z*a + z*b + z*c + ... + z*y, it would be possible to move the z factor, which is the same, out before brackets: z(a + b + c + ... y).
I'd like to know how it is ...
1
vote
2answers
149 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
419 views
What kind of syntactic sugar is available in Perl to reduce code for l/rvalue operators vs. if statements?
There's a bunch out there, as Perl is a pretty sugary language, but the most used statements in any language is the combination of if statements and setting values. I think I've found many of them, ...
2
votes
5answers
127 views
Reverse OR Algorithm?
Let me first describe my situation.
I have a list of Hex values, which are called BaseID. They are chosen such that logical OR between any number of them will give you a unique ID which is called ...
3
votes
1answer
98 views
Vectorizing the concatenation of binary operations
Say I have a cell array, that holds a stack of logical matrices, e.g.
matrices =
[225x400 logical]
[225x400 logical]
....
[225x400 logical]
The cell array can potentially hold ...
6
votes
3answers
765 views
Is operator && strict in Haskell?
For example, I have an operation fnB :: a -> Bool that does not sense until fnA :: Bool returns False. In C I may compose these two operations in one if block:
if( fnA && fnB(a) ){ ...
0
votes
4answers
176 views
Logical && operator
Having an unpredicted outcome using the && logical operator. If I link more than 2 expressions, the if clause fails. Is there some limit to the number of expressions that can be concatenated ...
1
vote
2answers
471 views
Execute 3 functions that return true/false and if all return true do something or else, no short circuiting
I have 3 JS functions a() b() c()
I want to execute all 3 and also check if all 3 return true then I want to call function yeah() or else call function boo()
I can use && but it will short ...
4
votes
3answers
2k views
Regex for “AND NOT” operation
I'm looking for a general regex construct to match everything in pattern x EXCEPT matches to pattern y. This is hard to explain both completely and concisely...see Material Nonimplication for a formal ...
1
vote
5answers
2k views
Precedence of Logical Operators in C [duplicate]
Possible Duplicate:
why “++x || ++y && ++z” calculate “++x” firstly ? however,Operator “&&” is higher than “||”
If you look ...
3
votes
1answer
84 views
Not clear on this jQuery syntax: return !$()
I saw this code and I'm not clear what the '!' does in this line of jQuery code on the return on the jQuery object:
$('#remove').click(function() {
return !$('#select2 ...
0
votes
3answers
609 views
Confused with conditional and logical operators - VB.net
I'm kind of new to VB.net, and since I just finished a C# course, the lack of parentheses creates a lot of confusion on how to write certain combinations of operators.
The C# equivalent of the line I ...
0
votes
4answers
777 views
PL/SQL Comparing bit strings, I need an AND operation?
I currently have a script that calculates the tanimoto coefficient on the fingerprints of a chemical library. However during testing I found my implementation could not be feasibly scaled up due to my ...
2
votes
2answers
141 views
What is the fastest method to check if two conditions are True?
For large arrays, what is the fastest way of checking whether multiple conditions are both True or both False? Does the choice of operator make a difference? Why or why not? Here is a dummy example:
...
1
vote
3answers
102 views
C pointers and || operators
I'm just wondering whether this is "good" code for a C89 program.
obj_ptr = (obj*) (ptr1 || ptr2);
Essentially what it does (atleast in GCC on my computer) is set obj_ptr as ptr1 if ptr1 != NULL ...
2
votes
3answers
83 views
Help to begin in assigning specific bits
So I have a problem for my class that I am having trouble getting started on. I am not asking people to do the problem for me, I just would like any nudge in the right direction. I need to create a ...
2
votes
3answers
7k views
Why is my bash string comparison of two identical strings always false?
I'm trying to write a simple little script to query a 3g connection, and if the connection has dropped, instigate a reconnection.
My problem is in checking the output of the command - two seemingly ...
4
votes
4answers
150 views
Difference between AND [and] &&
Given the statement:
if($value && array_key_exists($value, $array)) {
$hello['world'] = $value;
}
Would it be best to use the logical operator AND as opposed to ...
-4
votes
6answers
181 views
difference between 'or' logic in c
In linux using gcc when I write a loop like this
while(1 || 0)
It enters the loop but when I write the loop like this
while(0 || 1)
it doesn't enter the loop. What is the differrence?
5
votes
2answers
2k views
R: subset() logical-and operator for combining conditions should be & not &&
Why doesn't subset() work with a logical and && operator combining two conditions?
> subset(tt, (customer_id==177 && visit_date=="2010-08-26"))
<0 rows> (or 0-length ...
5
votes
5answers
1k views
XPath: logical OR
Please help to use the logical OR operator in XPATH and select one request from these two:
1) .//span[@class=\'fob12\']
2) .//p[@class=\'fob12\']
They differ in tag only.
2
votes
6answers
810 views
java using logical operators instead of if-else if for return
I have the following code in an equals method.
public boolean equals(Object o){
if (o == null) return false;
if (o == this) return true;
if (!(o instanceof Vertex)) return false;
...
1
vote
1answer
1k views
Python logical NOT operator for regular expressions
I tried searching for this answer online but I haven't found any luck. I am wondering if python supports a logical not operator (usually '!') in other languages for an if statement, or any control ...
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 ...
1
vote
3answers
316 views
?: operator on sprintf
Apparently too much Python or too much of any dynamically typed language is not healthy for a programmer. Anyways, I'm struggling with a C++ exercise and have a quick question about syntax. I couldn't ...
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:
...
0
votes
1answer
372 views
How to use php logical operator with multi selection
How do you use the PHP logical operators with multi-selection?
Here is some simple html dom parse, I want to do some stuff, if the html content not include div.title, and not include div.content, ...
10
votes
2answers
361 views
Logical AND + assignment in c++, safe?
I just learned this great pattern (from javascript actually) and I would like to apply it to my c++ code.
To explain the pattern, let's say I am representing a string as a linked list of these:
...
4
votes
1answer
142 views
Usage of or operator in php?
The following code:
$result = (false or true);
echo("With extra parentheses: ".($result?"true":"false"));
$result = false or true;
echo("<br />With no parentheses: ...
