Can these ternary expression with expensive method calls be simplified without outline variables ...
I do NOT want to
where
Can these expression be simplified even further?
- call expensive methods more than once.
- make "outline" temporary variables. Outline variables are ones declared outside ternary expressions.
- leak variables with letters.
where
bool? ExpensiveMethod*<T,U>(T t, U u){}.Can these expression be simplified even further?