A feature of some languages to skip certain code at runtime that doesn't affect the outcome, especially when testing compound conditions

learn more… | top users | synonyms

2
votes
7answers
126 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
569 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
44 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
119 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
74 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
131 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
161 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
124 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
86 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
63 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
70 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
260 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
241 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
176 views

What's the difference between | and || in MATLAB?

What is the difference between the | and || logical operators in MATLAB?
2
votes
2answers
67 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
89 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
134 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
106 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
123 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
114 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
177 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
62 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
183 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
924 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
97 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
112 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
505 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
186 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
245 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
120 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
465 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
246 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
76 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
85 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
60 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
194 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
238 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
870 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
107 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
119 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
129 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
192 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
224 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() ...
0
votes
5answers
496 views

What is short circuiting and how is it used when programming in Java? [duplicate]

Possible Duplicate: Does java evaluate remaining conditions after boolean result is known Why do we usually use || not |, what is the difference? I missed my class lecture the other day ...
5
votes
2answers
67 views

What (in the specs) warrants that 'non short circuit logical operators will in fact not short circuit?

This is directly inspired by this question. There are numerous references/statements that bitwise operators, when applied to booleans, will not short circuit. So in other words boolean a = f() & ...
2
votes
1answer
238 views

Why aren't short circuited operators the default

Given that a typical coding mantra is "Don't induce side effects in method calls." and that the only reason (that I know off - please enlighten me if I'm wrong) to not use short circuited operators is ...
0
votes
3answers
109 views

Collection initialisation using iif() throws ArgumentNullException

Can anyone tell me why this gives an error at run-time: Dim mightBeNothing As List(Of String) = Nothing Dim a As List(Of String) = IIf(mightBeNothing Is Nothing, New List(Of String)(), New List(Of ...
11
votes
5answers
604 views

Does comparing to Math.Min or Math.Max short-circuit?

When comparing to a minimum or maximum of two numbers/functions, does C# short-circuit if the case is true for the first one and would imply truth for the second? Specific examples of these cases are ...

1 2 3