A ternary operator is any operator that takes three arguments. For the ternary conditional operator `?`...`:`, use [tag:conditional-operator].

learn more… | top users | synonyms

0
votes
1answer
31 views

Using filters inside a ternary operator in AngularJS

Is there a method for applying a filter to a variable in the template when it is part of a ternary operation? <img ng-src="{{ image_url && image_url|filter:"foo" || other_url }}"> In ...
0
votes
3answers
38 views

Ternary Expression Error in PHP

My apologies guys, but I've tried everything from adding and removing curly braces to regular closing brackets and I'm genuinely stumped. Many thanks as always! **Parse error: syntax error, ...
0
votes
2answers
30 views

Compile error when using ternary operator with annonymous functions

This one's got me flummoxed, so I thought I'd ask here in the hope that a C# guru can explain it to me. Why does this code generate an error? Func<IEnumerable<Item>, ...
1
vote
1answer
57 views

Ternary Operator in Multiple conditions

I have one if condition in c# if (item.ReporSubCategoryId == 1 || item.ReporSubCategoryId == 2 || item.ReporSubCategoryId == 3 || item.ReporSubCategoryId == 4) { <a ...
1
vote
1answer
62 views

Why doesn't GCC's ternary extension support assignment?

GCC has an awesome ternary expression extension to C which allows us to create a statement like this: int x = some_var ?: 10; // expands to some_var ? some_var : 10 Which is really nice, and while ...
0
votes
4answers
60 views

Refactoring with the ternary operator in C

I've made a function that checks the bounds of an array. Why isn't my second solution performing the same task as my first solution? Is this a matter of precedence, or improper usage of the ternary? ...
0
votes
2answers
36 views

Converting a switch statement to ternary statement in javascript

I'm looking to convert the following code block below to a single line of code using only ternary statements: switch(true) { case (cond_1_bool): val_res = (cond_1_1_bool || cond_1_2_bool) ...
3
votes
6answers
70 views

Why doesn't this method work? Java ternary operator

What's wrong with this code: void bark(boolean hamlet) { hamlet ? System.out.println("To Bark.") : System.out.println("Not to Bark"); }
-5
votes
3answers
58 views

Ternary passing of arguments [closed]

In Java is it possible to use ternary to pass multiple arguments into a method call? For example - in a method have: print(degree == 270 ? "e", 5 : "t", 6); which calls: public void ...
0
votes
1answer
48 views

If else alternative for a conditional operator filter in a predicate?

After a long search i have my first question. I have this piece of code: var strings = new MyStringList { "orange", "APPLE", "grape", "pear" }; foreach (var item in strings.Where(s => s.Length == ...
0
votes
1answer
45 views

Ternary Operator within an Each statement not working in Ruby?

I was wondering if this is a syntax issue or ternary operators don't work within an each statement? Below is the code (code is on the 2nd line def no_repeats(year_start, year_end) ...
0
votes
3answers
123 views

Ternary operator vs if statement: compiler optimization

Is this: int val; // ... val = (val != 0) ? otherVal : 0; less efficient than this: int val; //... if (val != 0) val = otherVal; ? Are compiler able to optimize the ternary operator? The ...
0
votes
4answers
97 views

Ternary operator is always false

I am working on a project within C code and trying to use a ternary if statement but its always returning false and I don't understand why. The ternary if statement is: ...
1
vote
1answer
51 views

Uniform initialization with ternary operator return from function

I don't know if this is a compiler bug (gcc 4.8 on Arch Linux) or a problem with the standard, but the code below fails to compile. Why is getFoo1 allowed but not getFoo2? struct Foo { int _i; ...
24
votes
6answers
1k views

got an unexpected answer from the x?y:z expression

Here is a simple C++ snippet: int x1 = 10, x2=20, y1=132, y2=12, minx, miny, maxx, maxy; x1<=x2 ? minx=x1,maxx=x2 : minx=x2,maxx=x1; y1<=y2 ? miny=y1,maxy=y2 : miny=y2,maxy=y1; ...
1
vote
2answers
67 views

Tricky Ternary Operation in C

void calculate(){ int x=3, y=3, z=1; printf("%d\n",z+=x<y ? 10:20 ); } The above code prints 21. I understand that first, the program will evaluate x < y => 0, then z = z + 0 = 1, ...
1
vote
2answers
58 views

Why can the c# compiler not resolve the argument types of a lambda expression in a ternary operator? [duplicate]

I have this code: Action<A, B> fnUpdate = (someBool) ? (a, b) => a.propOne = b : (a, b) => a.propTwo = d; Why can the compiler not resolve the types of a and b, just because it is ...
0
votes
3answers
44 views

Using whitespace in Ruby code (the ternary operator)

Considering this piece of code: values = ["one", "two", "", "four"] values.each do |value| puts value.empty? ? "emptyness" : "#{value} is #{value.length}" end is it possible in Ruby 1.8.7 to ...
2
votes
1answer
29 views

Can you do a comparison in a variable assignment in bash?

In PHP, I can assign a variable like this: $a = ($b == $c) ? $x : $y; Which assigns to $a the value $x iff $b == $c, and $y otherwise. Is there a way to do this natively in bash? I am aware that ...
3
votes
0answers
93 views

Ternary operator why c++ gives rvalue but lvalue in c [duplicate]

int a,b; ... ((a>b) ? a : b) = value ; This is error in c. lvalue required for assigning value. But This works fine in c++. Why not in c and in c++? whats the difference? whats ...
0
votes
2answers
75 views

Inline PHP / HTML Ternary If

I am trying to do the following: <li <?PHP ($this->pageName == 'index' ? ?>class="current"<?PHP : '')?>><a href="">Home</a></li> But it is not working. Is ...
0
votes
1answer
26 views

Issue w/ternary operator in click function

I have a form that switches between a "Log In" and "Recover Password" form with the click of "a.flipLink". The h2 is initially set to have the text "Log In" I want to change it to "Recover" on the ...
0
votes
3answers
48 views

Ruby ternary operator method name?

What is the name of the method corresponding to the ternary operator? By name I mean :+ for addition, :== for equality, etc. I want to override the ternary operator to build a proxy class (same idea ...
0
votes
0answers
23 views

Would this shorthand work within a function for the return?

Would the below work? I'm not able to test it, and I was wondering (as I use very little shorthand coding techniques) if you're able to use shorthand for the return within a function? I can't think of ...
0
votes
1answer
45 views

Do ternary operators need an else block in all cases?

Suppose I have a code like this: i=1; if(i===1) { i++; } This code does have a if block but no else block. So,my question is , how to accomplish the same thing with the ternary operator. I had ...
0
votes
1answer
52 views

Kotlin Ternary Conditional Operator

What is the equivalent of this expression in Kotlin? a ? b : c This is not valid code in Kotlin.
0
votes
1answer
44 views

Java recursion with ternary operator on a method

Why does the ternary operation used in this code bit work? public static void main(String [] args) throws IOException { try (BufferedReader br = new BufferedReader(new InputStreamReader( ...
1
vote
2answers
48 views

Assignment in ternary conditional operator produces “Expression is not assignable” error

Can anybody tell me why the following was okay: if (newEditingMode) { dayView.dayViewIsInEditingMode = YES; } else{ dayView.dayViewIsInEditingMode = NO; } But the following gave the error ...
0
votes
2answers
90 views

ternary operator with a linq query and streamwriter

I'm using a linq query and then I use streamwriter and write data out. I need to check for nulls, so I'm wondering if it is "better" to do it in the linq query or in the foreach loop of WriteLine ...
1
vote
2answers
105 views

Does VHDL have a ternary operator?

I love the neatness of the ternary operator vs if clauses. Does this operator exist in vhdl? My search was to the contrary. I also checked the when statement out, but it's not an operator, and I want ...
3
votes
5answers
82 views

Why the ternary operator is not working this way?

Why does it not compile? What is wrong in the following code? (_DbContext == null) ? return _DbContext = new ProductAndCategoryEntities() : return _DbContext; If I restate it in terms of if it ...
0
votes
4answers
94 views

Java Ternary without Assignment

Is there a way to do a java ternary operation without doing an assignment or way to fake the assingment? I like how succinct ternary code looks when doing a bunch of if/then/elses. I'm hoping to be ...
0
votes
2answers
56 views

How to get the 2nd item in a row of 3?

I have a webpage layout where there are rows of 3. I need to gove the middle item a special css class. How to do that? div [div] div div [div] div div [div] div div [div] div I know with table rows ...
0
votes
4answers
36 views

improvements in is_array statement before foreach with ternary operator php

I have if ( is_array($this->input->post("tolerance")) ) foreach($this->input->post("tolerance") as $tolerance) $tolerances .= $tolerance . " " ; else $tolerances ...
4
votes
2answers
107 views

Array initialization with a ternary operator?

I don't have access to the C11 specification, therefore I can't investigate this bug. The following declaration rises an error during compilation: int why[2] = 1 == 1 ? {1,2} : {3,4}; The ...
1
vote
1answer
30 views

Inserting empty character into snprintf

Defines: CHAR_BACKSLASH is defined as '\\' or 0x5C Variables: workingDir is a C-String myFilePath is a C-String int len = strlen(workingDir); char lastChar = workingDir[len - 1]; Below, ...
0
votes
4answers
86 views

jquery conditional operator for attr function

$("<button>") .addClass("radio") .addClass(this._getValue(lbl) ? "checked" : "") .attr(this._getDisableProp(lbl) ? ("disabled", "disabled") : "") .prop(this._getDisableProp(lbl) ...
2
votes
6answers
203 views

Conditional operator?

var discount = (i == 1) ? definition.SecondPetDiscount ?? definition.AdditionalPetDiscount : (i == 2) ? definition.ThirdPetDiscount ?? definition.AdditionalPetDiscount : ...
2
votes
1answer
52 views

Checking an integer then returning a string

So I have a small snippet of code that I may use when I want to quickly check an integer before deciding what a string value will be: string status = (statusID == 0 ? "Inactive" : "Active"); ...
0
votes
2answers
87 views

Parse error: syntax error, unexpected ':'

Why am I getting this error the code works on the live demo the developer shows and its the same code? Any help would be most appreciated. $method = $_SERVER['HTTP_X_HTTP_METHOD_OVERRIDE'] ?: ...
0
votes
1answer
63 views

using ruby ternary operator to puts a value and increment a variable

I'd like to puts a 1 if a test is true and a puts a 0 if it is not. I'd also like to increment a counter that counts each time a test is successful. I have this right now: puts test1 ? sum += 1 : 0 ...
1
vote
3answers
72 views

Abbreviation for ternary operator in python

I seem to remember an abreviation for the ternary operator testing for existence. For example: a = None b = a if a else 'Not None!' # b is now 'Not None!' I thought it was something like this a ...
2
votes
3answers
148 views

java - use of ternary operator

I got quite a large code with 4 different conditions which I tried to shorten using the conditional ternary operator as descibed here. However, I can't manage the right syntax since I have more than 2 ...
3
votes
1answer
71 views

What is this called: myVar = value1 or value2

I've seen this kind of ternary assignment called and I was wondering if it had a specific name: value1 = None value2 = 'real value' myVar = value1 or value2 // at this point the value of myVar is ...
2
votes
4answers
98 views

pass to function: incremented integer inside array or set reset array with ternary operator or a custom function

I have several arrays (in this example 8) holding information ("images adresses"): var arr_1 = ["img1.jpg","img2.jpg","img3.jpg"]; var arr_2 = ...
3
votes
1answer
58 views

Stacking PHP 5.3 ternary operators - is it safe?

I am aware of the several caveats with chaining the expr ? var1 : var2 code. I tried stacking the PHP 5.3 ?: operator though, and it seems to be working fine in a multiple fallback scenario: php ...
1
vote
3answers
131 views

UItextfield initialized with empty string? not null? nor nil?

i have a uitextfield, when it is initialized and i didn't input any values into it, i found the value of the uitextfield is not null nor nil. NSString *notes = ...
-1
votes
2answers
32 views

PHP Function Parameters not working

This function is not generating any output other than the empty select tags. It is supposed to automatically chose the amount of days based on the current month if there was no amount of days ...
0
votes
2answers
30 views

Ternary or terser setClass equivalent

We have addClass, removeClass, toggleClass What is the jQuery equivalent to document.getElementById("field").className=(someBoolean)?"pass":"fail"; but using one of the methods that leave ...
0
votes
4answers
122 views

Ruby one liners — trying to comprehend single line of ruby code that has an assignment, two equality tests, a ternary operator, and an && operator

In several railscasts, Ryan Bates uses this custom 'sortable' helper in conjunction with several helper methods (http://railscasts.com/episodes/228-sortable-table-columns). I'll just show you my ...

1 2 3 4 5 10