The base-3 positional numeral system which represents numbers using the digits 0, 1, and 2
1
vote
2answers
42 views
Recognizing and converting ternary operator to correct if statement
I'm trying to figure out the below code and I'm having trouble with the ternary operator below.
System.out.print(solution[i][j] == 0
? " "
: ...
0
votes
1answer
37 views
Ruby ternary operator structure
puts bool ? "true" : "false"
is proper, but
bool ? puts "true" : puts "false"
is not. Can somebody explain to me why this is?
Side note:
bool ? ( puts "true" ) : ( puts "false" )
works fine ...
0
votes
0answers
11 views
Hibernate 1:n:1 ternary mapping annotations
How can I do this with Hibernate 4.3.0 where @MapKeyManyToMany does not exist. Thank you.
PLEASE do not suggest me to make "middle" table as class and map all relations sepparately. It is not a ...
-1
votes
1answer
47 views
Putting a for loop in a ternary operation
Just for kicks and giggles, would it be possible to put a 'for' loop inside a ternary operation?
Here's code for finding if a number is prime:
int isPrime(int number){
int i, root = sqrt(number)+1; ...
-6
votes
0answers
47 views
Recurrence Relation for ternary strings [closed]
Ques: Find a recurrence relation for the number of ternary
strings of length n that do not contain two consecutive
0s or two consecutive 1s.
The solution given is: Let c_n = number ending in 1 = ...
-1
votes
2answers
31 views
Random sparse ternary vector for a list of words [closed]
I'm working on XML data clustering, in which random vectors are to be created for each word in a bag of words. The desired vector should be random, sparse and ternary.
for example,
car [0 0 +1 0 -1 ...
0
votes
4answers
80 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 ...
3
votes
1answer
45 views
Assigning extension methods to a delegate using ternary statements
Assumptions
Let's assume we have an interface, and the following extension methods defined for said interface (their implementations aren't important)
public interface IPerson;
public class ...
6
votes
5answers
109 views
Replacing IF with a logical expression in PHP
I was refactoring some old code when I stumbled upon a construct similar to this:
// function bar() returns a value
// if the value is an instance of customException class, terminate with error code
...
0
votes
0answers
76 views
A user friendly interface for Ternary Diagram (C++ and C#)
Does anybody know how to public a user friendly interface or code. I have just developed an interface to plot ternary diagrams. I know there are softwares that can do the same but with this one users ...
-3
votes
3answers
66 views
What would be the equivalent if else statement of this ternary expression?
bool wm(const char *s, const char *t)
{
return *t-'*' ? *s ? (*t=='?') | (toupper(*s)==toupper(*t)) && wm(s+1,t+1) : !*t : wm(s,t+1) || *s && wm(s+1,t);
}
I have search the ...
0
votes
3answers
61 views
PHP ternary inside concatenation with no else?
I want to check if 2 variables are the same and if so, echo a string. Is this possible within a concatenation? And to do it without creating a separate function?
e.g.
$var = 'here is the first part ...
-1
votes
3answers
89 views
Shorthand IF statement in PHP
I'm wondering if the following is possible. I want the if statement that I wrote below to be in one line (ternary).
I want to use the ternary(shorthand php code) in a array for cURL.
Form data ...
0
votes
1answer
116 views
Ternary operation in check/in checking HTML checkbox
My JavaScript spits out dynamic HTML with one of the fields as checkbox based on a boolean as follows:
<input type="checkbox" disabled='true' (bool == true ? "Checked":"undefined") />
My ...
1
vote
1answer
74 views
Finding longest common prefix in a ternary search tree
I implement a ternary search tree for a 20000 words.I want to know an algorithm to find a longest common prefix(prefix that is shared by at least 2 words)?
Is there anyway to find a Longest Common ...
2
votes
5answers
124 views
Ternary operator
Why the output of following code is 9.0 and not 9 ? If ternary operator is nothing but short form of if-else branch then why java compiler is promoting int to double ?
public class Ternary
{
public ...
4
votes
3answers
66 views
whats wrong with this ternary operator?
I have an object menuNames which should maintain a list of menu items. If menuNames already has the slug, increment the value, if it doesnt contain the slug, set the value equal to 1. I'm doing this ...
3
votes
3answers
120 views
python ternary iteration with list comprehension
Is ternary iteration possible? A simplistic version of what I mean, though this particular example could be done in a better way:
c = 0
list1 = [4, 6, 7, 3, 4, 5, 3, 4]
c += 1 if 4 == i for i ...
0
votes
2answers
115 views
Simplifying convoluted if-else conditions to check if len(list) =0 - Python
I am trying to check if sent1 or sent2 has zero length and if they have i want to set sent_witn_not_null as the list with non-zero list. But the if-else conditions, i've written seems convoluted. What ...
-2
votes
2answers
52 views
Ternary Put Operator in cpp possible?
I was thinking about implementing a ternary put operator in cpp similar to "<<":
mystream <<< param2 param3;
Is this possible? Does it already exist? One remark: I remember having ...
5
votes
4answers
136 views
Using statements on either side of a python ternary conditional
Why is it prohibited to use statements on either side of python's ternary conditional? I can't see any obvious reason how a few of the following naive syntax examples could be ambiguous or broken - ...
1
vote
1answer
92 views
Ternary Operator Inside PHP String
I want to evaluate a simple ternary operator inside of a string and can't seem to find the correct syntax.
My code looks like this:
foreach ($this->team_bumpbox as $index=>$member)
echo ...
0
votes
1answer
254 views
JSP/Java Ternary operator returning boolean and RegEx check within rendered property JSTL
Here is sample code that throws a Servlet Exception as invalid expression error.
data Types are thus:
boolean: bean1.isValid1
boolean: bean1.isValid2
boolean: bean1.isValidSubCondn
String: ...
2
votes
2answers
39 views
Ternary and print combination giving odd results
I was trying to use a ternary to print out a string if something was true and something else if it wasn't (simple enough, right?). It gives no errors and doesn't seem like it would cause any trouble. ...
1
vote
1answer
39 views
segmentation fault in insertion into ternary search tree
i am trying to insert the charachter in to ternary search tree, please help me out with this segmentation fault ??
here is what i am doing to inser in to trie,on running this i am getting segmentation ...
1
vote
5answers
60 views
Nested ternery operators output wierd result
This outputs 'Option 1'. I have no idea what is wrong with it.
$result = (0 == 0) ? 'Option 0' : (1==2) ? 'Option 1' : 'Option 2';
Thanks!
1
vote
3answers
103 views
Understanding ternary operators [closed]
I have the following code:
c.m & 3 || (b |= 2,
65 <= a && 90 >= a ? a = 65
: 48 <= a && 57 >= a ? a = 48
: b & 1 ? 97 <= a && 122 >= a ? a = 65
: ...
1
vote
1answer
76 views
pass kwargs to re.sub()
In Python, I'm trying to implement a pseudo-ternary operator within a template string. A value is inserted into a string if kwargs has a specific key.
re module has a way do exactly what I need in ...
5
votes
3answers
222 views
NullPointerException through auto-boxing-behavior of Java ternary operator
I tripped across a really strange NullPointerException the other day caused by an unexpected type-cast in the ternary operator. Given this (useless exemplary) function:
Integer getNumber() {
...
0
votes
1answer
77 views
Change to ternary in JSTL
Can you please help me to convert this JSTL tag to a JSTL ternary
<body
<c:choose>
<c:when test="${wcmMode.author}">class="author"</c:when>
...
-2
votes
5answers
435 views
Contiguous substrings containing one or two characters odf a given Ternary string
One question for an Interview was that : given a ternary string , find the number of contiguous substrings which contain only one or two character of the given ternary string. A ternary string is one ...
4
votes
3answers
148 views
JAVA calling a method using a ternary operator
I am trying to use ? to decide which method i want to call, but i do not need to assign a variable. My question: Is there a way to use the ternary operator with out assigning a variable?
(something i ...
-1
votes
2answers
75 views
Using the PHP ternary operator to return a specific value [closed]
I googled this and browsed stack overflow already. I am trying to shorten my code and I have this working method below I want to rewrite in ternary style. Can someone tell me if this is possible and ...
0
votes
4answers
678 views
ternary operator without else in C
I want to use ternary operator without else in C. How do I do it.
(a)? b: nothing;
something like this. What do I use in nothing part?
4
votes
4answers
197 views
Python Ternary Operator Without else
Is it possible to do this on 1 line in Python?
if <condition>:
myList.append('myString')
I tried the ternary operator
myList.append('myString' if <condition>)
but my IDE ...
8
votes
2answers
155 views
Result of ternary operator not an rvalue
If you compile this program with a C++11 compiler, the vector is not moved out of the function.
#include <vector>
using namespace std;
vector<int> create(bool cond) {
...
2
votes
3answers
126 views
Unusual use of the Ternary Operator
I'm a newbie to C, I understand why ternary operators can be useful, less code than if/else blocks.
I have been given some C code to maintain, and one thing I've noticed is the previous programmer ...
0
votes
3answers
87 views
Using PHP ternary operators to pass data to a method
I've been working on some custom classes including a debug bug method. Using a constant debug variable
define('DEBUG', 3);
I set what level of debug I want to display. From FALSE (none), 1 (basic), ...
0
votes
1answer
72 views
Does ternary operator can only do one kind of condition?
ternary make code concise and readable, I'm curious about how to change the following if condition to ternary operator:
var1 = if(true){'a'};
I try the following
var1 = true? 'a': ;
since it ...
1
vote
2answers
76 views
Seemingly redundant ternary operators in javascript
The following is common code floating around online that checks if cookies are enabled in a particular browser:
var cookieEnabled = (window.navigator.cookieEnabled) ? true : false;
if (typeof ...
1
vote
2answers
156 views
What's wrong with this ternary operator?
I use a paging system like this:
<?php
$p = $_GET['p'];
switch($p)
{
case "start":
$p = "pages/start.php";
$currentPageId = 1;
break;
case "customers":
$p = ...
2
votes
1answer
128 views
Ternary operator and Sequence Points in C
I've an expression of the form shown below :-
while (count)
{
...
...
index = ((count == 20)? 0 : index++);
...
...
}
Now Ternary operators are sequence points in C but I believe that the ...
0
votes
2answers
125 views
Ternary operators in AJAX initialization not setting appropriately
I'm working with some AJAX calls, which connect properly, however if I attempt to use a ternary operator in the initialization of the call, the operator does not set properly. Specifically, I'm trying ...
5
votes
2answers
872 views
Ternary plot and filled contour
Users, I'd like to have some tips for a ternaryplot ("vcd").
I have this dataframe:
a <- c(0.1, 0.5, 0.5, 0.6, 0.2, 0, 0, 0.004166667, 0.45)
b <- ...
9
votes
6answers
469 views
Java: avoid checking for null in nested classes (Deep Null checking)
Imagine I have a class Family. It contains a List of Person. Each (class) Person contains a (class) Address. Each (class) Address contains a (class) PostalCode. Any "intermediate" class can be null.
...
2
votes
1answer
187 views
What is VB.NET's equivalent of C#'s default keyword? [duplicate]
Possible Duplicate:
Bug?? If you assign a value to a nullable integer via a ternary operator, it can't become null
While this question may seem like a duplicate of many, it is actually ...
0
votes
3answers
461 views
PHP nested ternary issue
I've got nested ternary operators in my code like this:
$error = $fault_all ? "ALL" : $fault_twothirds ? "TWOTHIRDS" : $fault_onethird ? "ONETHIRD" : "UNKNOWN";
echo 'STATEERROR: ' . $error . ...
0
votes
4answers
192 views
Best way to do ternary conditionals in Python < 2.5
I have to bear with a Python version < 2.5 (it is 2.4.3 for specifics)
It seems that ternary operators were introduces in Python starting at 2.5. For those who are not familiar, ternary operators ...
0
votes
1answer
146 views
Fluent nHibernate Mapping with Ternary Mapping Table
Have a legacy database with mapping table structures like the following. I am trying to figure out how to fluently map this type of relationship.
There are multiple parent tables that use a mapping ...
0
votes
1answer
135 views
Strange behavior with reduce and fold on identical code block
EDIT
Ok, @dhg discovered that dot-method syntax required if the code block to fold() is not bound to a val (why with reduce() in the same code block one can use space-method syntax, I don't know). At ...





