A feature of some languages to skip certain code at runtime that doesn't affect the outcome, especially when testing compound conditions
1
vote
1answer
17 views
Short circuiting in Informix SQL
Does Informix support short circuiting in SQL clause?
For example:
SELECT * FROM myTable
WHERE '0' IN (listOfValues) OR myTable.code IN (listOfValues)
where listOfValues is a list of codes ...
1
vote
1answer
27 views
Short-circuit logic evaluation operators
Are there any short-circuit logic operators (specifically short-circuit AND and short-circuit OR) that I can use in a WHERE clause in MySQL 5.5? If there isn't, what are the alternatives?
An abstract ...
0
votes
1answer
56 views
Understanding when the && operator short circuits [duplicate]
Perhaps I'm missing something obvious.
In R, TRUE && NA evalues to NA. This doesn't make sense to me, because && should evaluate left to right, and stop as soon as one of its ...
1
vote
0answers
48 views
Are there examples of short-circuit control flow in Javascript not unlike Minimal Perl?
http://en.wikipedia.org/wiki/Short-circuit_evaluation says "Short-circuit operators are, in effect, control structures" and http://en.wikipedia.org/wiki/Perl_language_structure#Control_structures says ...
0
votes
1answer
19 views
Short Circuit Evaluation Order
All this time my thinking of short circuit evaluations seems to be wrong.
In javascript:
var a = false, b = true, c=true;
a && b || c; // Evaluates to true
Compared to
var a = false, b = ...
2
votes
7answers
164 views
Execution order of conditions in C# If statement
There are two if statements below that has multiple conditions using logical operators. Logically both are same but the order of check differs. The first one works and the second one fails.
I ...
15
votes
4answers
589 views
How to make multiplication operator (*) behave as short-circuit?
I have lots of computations, specially multiplication, where first part is sometimes zero and I don't want to evaluate second operand in that case. There are at least two short-circuit operators in ...
0
votes
5answers
46 views
Short circuiting not working [closed]
It was my understanding that C# conditional operators perform short circuiting. However, my program throws an exception while running this code. Index is equal to -1, so the second condition should ...
6
votes
2answers
122 views
Replacing chained ifs with short-circuited operations
This is a very trivial problem:
There are four boolean functions: a(), b(), c() and d(). I want to keep calling them in order until the first one returns true. instead of doing the traditional
...
0
votes
1answer
78 views
Scala Tail Recursion Optimization on Short-Circuited Boolean Operations
I wrote a function like this in Scala:
def isSorted[T](list : List[T])(compare : (T, T) => Boolean) : Boolean = {
list match {
case Nil => true
case x :: Nil => true
...
0
votes
4answers
151 views
programming with short-circuit evaluation in Java
Does relying on short-circuit evaluation make the code fragile?
I wrote a piece of code that essentially looks like the following. My professor wanted me to rewrite it.
(Note: I know for sure that ...
5
votes
6answers
179 views
Inline If statement - short-circuiting
As I understand and read you can use short circuiting in if statement (&& or ||) in order for second condition not to fire. and if you want both condition to fire you would use single operands ...
2
votes
1answer
173 views
Any difference between Lazy evaluation and Short-circuit evaluation?
From Wikipedia:
Lazy evaluation is:
In programming language theory, lazy evaluation or call-by-need is
an evaluation strategy which delays the evaluation of an expression
until its value is ...
3
votes
2answers
100 views
Why does bash not stop on error for failures in sequence of short-circuited commands?
I'm seeing some behavior that doesn't make sense to me when I run a bash script with the -e option that has multiple commands strung together with &&s and one of them fails. I would expect the ...
1
vote
1answer
65 views
CASE expression that does NOT have short-circuit evaluation?
I recently began teaching myself (terrible) SQLite. One thing that struck me as annoying was the CASE expression, namely the fact that it employs short-circuit evaluation.
Is there any way to get ...
1
vote
3answers
77 views
Does combining short-circuiting operators with regular operators change the result of the expression?
I've always believed that using conditional boolean operators (a.k.a. short-circuiting) in stead of regular boolean operators doesn't affect the outcome of an expression.
var result = true | false ...
0
votes
1answer
324 views
Ant Condition task
I have not been able to find the answer to this question and, as you will see, it is not important in understanding how the build.xml I am trying to reverse engineer works. Nevertheless I do think ...
2
votes
2answers
255 views
IronPython and DynamicObject that overrides TryUnaryOperation
IronPython (2.7.3) seems to not check the TryUnaryOperation with ExpressionType.IsFalse and ExpressionType.IsTrue for performing short-circuit evaluation of the logical AND and OR operations.
Here's ...
5
votes
5answers
197 views
What's the difference between | and || in MATLAB?
What is the difference between the | and || logical operators in MATLAB?
2
votes
2answers
69 views
list(), if and short-circuit evaluation
I have the following code snipplet:
$active_from = '31-12-2009';
if(list($day, $month, $year) = explode('-', $active_from)
&& !checkdate($month, $day, $year)) {
echo 'test';
}
Why ...
2
votes
6answers
92 views
Does nesting `if`s increase performances?
If I have this code:
if (isFoo() && isBar())
{
...
}
The program will calculate the first condition, then calculate the second condition, then determine whether to go through or skip ...
1
vote
1answer
140 views
Short-circuited boolean binary operators in Haskell
I'm building a call by name Haskell interpreter and I want to implement a function short :: Val -> Exp -> Error Val that will evaluate a value applied to an expression. I don't want to evaluate ...
2
votes
3answers
108 views
Short circuit and giving incorrect results?
I am experiencing strange results with Perl's short circuited and, that is &&.
I am trying to solve a Project Euler problem where I want a certain number to be divisible by a list of ...
-1
votes
4answers
130 views
Boolean Or containing Ternary conditional operation doesn't get short-circuited
In general, the short circuit or operator || ignores the right side of the or if the left side evaluates to true. Apparently, we've found an exception to this.
Check out the following:
if (foo == ...
0
votes
1answer
119 views
Shortcircuit Prefix Boolean Expressions
I have a bunch of boolean expressions written in prefix notation (also called Polish notation). Nested expressions in this format are very easy to evaluate (see the algorithm in the Wikipedia ...
3
votes
5answers
194 views
Short circuit on |= and &= assignment operators in C#
I know that || and && are defined as short-circuit operators in C#, and such behaviour is guaranteed by the language specification, but do |= and &= short-circuit too?
For example:
...
0
votes
0answers
65 views
Testing via respondsToSelector(hasRecurrenceRules) and evaluating hasRecurrenceRules in the same If sentence iOS 4.3.5
Very strange behavior in an App that we sell on the AppStore:
From time to time, we have an issue when evaluating this in our code:
if ((([anEvent respondsToSelector:@selector(hasRecurrenceRules)]) ...
4
votes
3answers
189 views
Parentheses and logical operators
consider this code (C++) :
int x = -4 , y = 5 ;
bool result = x > 0 && y++ < 10 ;
the expression (x > 0) will be evaluated first , and because (x > 0 = false) and due to short-circuit ...
2
votes
1answer
1k views
Does JavaScript have “Short-circuit” evaluation [duplicate]
Possible Duplicate:
Using &&'s short-circuiting as an if statement?
Does javascript use optimization in boolean expressions?
I would like to know if JavaScript has ...
2
votes
3answers
99 views
Short-circuiting and readability
In this line
if ((last_search == NULL) || (last_search != NULL && total_results != 0))
I know that C's short-circuit evaluation rules say that only if last_search is not null will it try and ...
3
votes
1answer
118 views
Are short-circuits operators allways executed left to right?
So if code:
if(f() && false) {
// never happens
}
Can i be always sure that f() will be called and will be never 'optimised-away' by compiler?
6
votes
4answers
537 views
Is Sql Server's ISNULL() function lazy/short-circuited?
TIs ISNULL() a lazy function?
That is, if i code something like the following:
SELECT ISNULL(MYFIELD, getMyFunction()) FROM MYTABLE
will it always evaluate getMyFunction() or will it only evaluate ...
1
vote
2answers
219 views
dict.pop or dict.get and evaluation
Consider the following code:
>>> def default_answer():
... print "Default was required!"
... return 100
...
>>> g = { 'name': 'Jordan', 'age': 35 }
>>> result = ...
2
votes
1answer
264 views
JavaScript Short-Circuit Variable Assignment with Commas
I am reviewing some code for a JavaScript widget that I downloaded and there is a variable assignment similar to the following:
var a = a.something || a.somethingElse, c, d, e, f, g;
What I am ...
1
vote
4answers
123 views
Is there a better way to write the following VB6 snippet?
I work at $COMPANY and I'm helping maintain $LEGACY_APPLICATION. It's written in visual basic 6.
I was faced with doing an unpleasantly elaborate nested if statement due to the lack of VB6's ability ...
2
votes
1answer
549 views
Set Nullable property default value to Nothing not working as desired
I have a property which type is Nullable of Integer an default value Nothing as shown below:
Property TestId As Integer? = Nothing
the following code evaluates the property TestId to Nothing (as ...
0
votes
3answers
268 views
VBA: Error thrown when using Or (In an If-Then statement), the first condition tests if object is nothing
For a custom object, I want to test two conditions. The first is whether the object is nothing. If so, enter the block. If the object is not nothing, I want to do a test on one of the object's ...
4
votes
1answer
79 views
Does Python raise TypeErrors before short-circuiting a boolean?
I have a function that performs a monthly task on one or more specified days (e.g., the first and the 15th.) For enhanced usability, I want to let users just pass in a single int when they only want ...
1
vote
3answers
86 views
New way to write the if statement
I found a way to write the if statement in another way (I think) while searching in the source code of a website.
Instead of:
if(a)b;
or:
a?b:'';
I read:
!a||b;
Is the third way the same as ...
0
votes
1answer
61 views
Are there any right associative short-circuit operators
I'm working on a interrupter the lets one define their own operators. The goal then is to take an AST that looks like exp op exp op exp and turn it into either exp op (exp op exp) or (exp op exp) op ...
3
votes
2answers
202 views
PHP Short-Circuit Evaluation (Good/Bad?)
This is a general question of sorts, but to explain it I will use a specific example.
I have a function that loads a document. If that document does not exist it will create it, if it does exist it ...
0
votes
5answers
248 views
Python: How to chain boolean tests to get False as soon as it gets the first False
After having a lot of trouble trying to reduce nested ifs (and a script that stopped working), I realized perhaps I am having the wrong idea of what and how boolean stuff works in python.
I had this ...
2
votes
2answers
935 views
Is “OR” in SQL Server short-circuiting?
Is the "OR" comparaison work like vb.
I mean if he check each or if the first one is false
like
DECLARE @var1 bit;
SET @var1=1
DECLARE @var2 bit;
SET @var2=1
(@var1=1 or @var2=1)
AND ...
So, @var ...
2
votes
5answers
108 views
The evaluation of 'if' expressions
Consider I have the following:
edge some_edge;
std::priority_queue<edge> my_queue;
Is it safe to write such an 'if' even if the queue might be empty?
if ((my_queue.size() > 0) && ...
4
votes
7answers
88 views
Are there benefits to quick-exiting a method or constructor?
I believe this to be related partially to short-circuiting logic, but I couldn't find any questions that directly answered my question. Possible related questions: Benefits of using short-circuit ...
1
vote
2answers
126 views
php order of execution
Say, you have a condition like this;
if ($condition_1 && $condition_2)
and you have the option of writing it as
if ($condition_2 && $condition_1)
Now, if condition_1 takes 1 ms to ...
0
votes
1answer
132 views
Short circuit evaluation for SQL query optimisation
I want to optimize my query using short circuit evaluation as below:
Query 1:
Select emp_id, emp_name
From emp_table
Where emp_name = "xyz"
and emp_id >= 50;
Query 2 :
Select emp_id, ...
4
votes
3answers
196 views
Short circuit evaluation using procedures
I am currently developing a compiler for a very limited object oriented language. I want to treat all values as objects and operators on those values will be implemented as methods. The compiler ...
3
votes
3answers
230 views
How to implement Short-Circuit evaluation in user-defined functions?
Some operators such as && and || perform short-circuit evaluation. Also, when a function is called with arguments, all arguments are constructed before calling the function.
For instance, ...
6
votes
6answers
219 views
Why c is not incremented in the output?
I was working on the Basics of C and was trying to solve the problem below could any one explain why the output of variable c is different?
What is the output of the following program?
int main()
...


