ternary operator ?: suggestion

The current ternary operator, for this example:

let val = p == 5 ? 10 : 40

Which I have always thought was hard to read but I do like the functionality it provides. That is, in one expression you can compactly get two different values based upon a condition. Swift seems to have adopted the C style ternary operators probably to not completly change everytihg. Similar to the drop of the ++ and -- operator I am proposing that there is to replace the ternary operator to improve readability but continue to provide that functionality.

Recommendation: most readable but changes rules about if-else always having braces and puts the “if” at end. It is only a little bit longer than the original. I think it is clearer to have the conditional at the end so the assignment part is where the variable is assigned. This also does not introduce new keywords or operators.

let val = 10 else 40 if p == 5

In looking at the Nil-Coalescing operator there is a similar idea but it is really not the same. In that the left hand side of the ?? operator returns itself when non nil, and the behavior of the ternary operator is different. It is also harder to read.

let val = 10 ?? 40 if p = 5

I also considered a bunch of other possibilities like using “where" or “when" instead of “if”, the python of putting conditional in the middle or the ruby style of “if" returning a value but did not like those.

// python style
let val = 10 if p == 5 else 40

// ruby style
let val = if p == 5 then 10 else 40

1 Like

Hmm… that is really interesting. I wonder if we can use optionals to make this work in an elegant way.

Forget about else for a second. What if there is an operation which says, this is either this value or nil based on whether it meets a condition? Then else (and else if) can be handled by a combination of that operation and the nil-coelecing operator.

I once wrote a small DSL which had this behavior and it was really nice.

What about something like:

  let x = value if? condition

x would have value if condition evaluates to true, or it would be nil. If I wanted an else statement:

  let x = value if? condition ?? otherValue

Now it works just like the ternary operator, but is IMHO more readable. Note: these can also be chained to give you else if style behavior:

  let x = value if? condition ?? otherValue if? otherCondition ?? evenMoreValue

You could optionally (ha!) put things in parentheses as well, which I always end up doing with the ternary:

  let x = (value if? condition) ?? (otherValue if? otherCondition) ?? evenMoreValue

Not a 100% there yet, but I do think it is a good start at something more elegant…

Thanks,
Jon

···

On Dec 5, 2015, at 10:29 AM, possen p <possen@gmail.com> wrote:

The current ternary operator, for this example:

let val = p == 5 ? 10 : 40

Which I have always thought was hard to read but I do like the functionality it provides. That is, in one expression you can compactly get two different values based upon a condition. Swift seems to have adopted the C style ternary operators probably to not completly change everytihg. Similar to the drop of the ++ and -- operator I am proposing that there is to replace the ternary operator to improve readability but continue to provide that functionality.

Recommendation: most readable but changes rules about if-else always having braces and puts the “if” at end. It is only a little bit longer than the original. I think it is clearer to have the conditional at the end so the assignment part is where the variable is assigned. This also does not introduce new keywords or operators.

let val = 10 else 40 if p == 5

In looking at the Nil-Coalescing operator there is a similar idea but it is really not the same. In that the left hand side of the ?? operator returns itself when non nil, and the behavior of the ternary operator is different. It is also harder to read.

let val = 10 ?? 40 if p = 5

I also considered a bunch of other possibilities like using “where" or “when" instead of “if”, the python of putting conditional in the middle or the ruby style of “if" returning a value but did not like those.

// python style
let val = 10 if p == 5 else 40

// ruby style
let val = if p == 5 then 10 else 40

_______________________________________________
swift-evolution mailing list
swift-evolution@swift.org
https://lists.swift.org/mailman/listinfo/swift-evolution