The conditional-expressions tag has no wiki summary.
9
votes
6answers
2k views
C# if-null-then-null expression
Just for curiosity/convenience: C# provides two cool conditional expression features I know of:
string trimmed = (input == null) ? null : input.Trim();
and
string trimmed = (input ?? "").Trim();
...
8
votes
3answers
179 views
Are conditional expressions broken within packages?
Consider the following snippet:
requires
designide,
rtl,
vcl,
{$IF RTLVersion < 19.0} // E2026 Constant expression expected
//{$IF CompilerVersion = 22.0} // same as above
...
4
votes
9answers
550 views
What does 'Conditional expressions can be only boolean, not integral.' mean?
What does 'Conditional expressions can be only boolean, not integral.' mean? I do not know Java and I know C++ deffenetly not enought to understend what it means.. Please help (found in ...
3
votes
6answers
142 views
In line Conditional Expression or Function - Pythonic?
I have a situation where I would like to conditionally slice a string from the
reported position of an '@' symbol; the condition being: slice the string if
the '@' is there, else leave it untouched. I ...