Having recently read
Suppose you are using the ternary operator, or the null coalescing operator, or nested if-else statements to choose assignment to an object. Now suppose that within the conditional statement, you have the evaluation of an expensive or volatile operation, requiring that you put the result into a temporary variable, capturing its state, so that it can be compared, and then potentially assigned.
How would a language, such as C#, for consideration, implement a new logic operator to handle this case? Should it? Are there existing ways to handle this case in C#? Other languages?
Some cases of reducing the verbosity of a ternary or null coalescing operator have been overcome, when we assume that we are looking for direct comparisons, for example. See Unique ways to use the Null Coalescing operator, and particularly in particular the discussion around how extending one can extend the usage of the operator to support String.IsNullOrEmpty(string) and seeing . Note how Jon Skeet is using the PartialComparer from MiscUtil, to reformat 0s to nulls,
I find myself asking if there would be a better way to have a generic comparison fallback operator
Why is this possibly necessary? Well, resulting in less of take a tree structure with the ternary operator on our hands, but look at how we write a more linear fall back operator.
I submit comparison method for your consideration, the "fallback evaluation operator".
Taking complex objects without any shortcuts (examples from the example of where MiscUtil would come into play, turning thiscited discussions):
public static int Compare( Person p1, Person p2 )into this}
Jon Skeet writes a new comparison to fallback the equality case. This allows the expression to extend by writing a new specific method which returns null, allowing us to use the null coalescing operator:
Would
The null coalescing operator is more readable because it has two sides, not three. The boolean condition clause is separated into a method, in this case returning null if the expression must be readablecontinued.
What would the above expression look like if we could more easily put the condition in-line? Take the expression from PartialComparer.Compare which returns null, and useful to utilize place it in a new clause, ternary expression which allows us to use the "?: unless" clauseevaluation of the left-side expression, like suchwith an implicit temporary variable value:
return Compare( p1.Age, p2.Age ) ?: unless value == 0 : Compare( p1.Name, p2.Name ) ?: unless value == 0Where, the first expression is evaluted, and the special keyword value, used in the set method of properties, for example, is overloaded to carry the value of the expression. value is then used in the conditional boolean expression to the right of the new keyword unless. If the boolean is true, the overall expression evaluates to the expression on the right of the :. If the boolean is false, the overall expression evaluates to the currently evaluated value, value.
I suppose either ?: or unless would do it, and a quick Google search on why SO is highlighting the keyword unless reveals that it is a Ruby keyword? Is that right? Well, a brief glance tells me this would be different, so we wouldn't want people confusing the two?
Rather than being an overloaded comparison operator, I suppose this is more like a short-circuiting inverted ternary operator.
