Ternary selection: condition ? whenTrue : whenFalse.
condition ? whenTrue : whenFalse
For inline value choices driven by a business condition. Both branches are evaluated lazily as in the source language's ternary operator.
Boolean expression selecting a branch.
Type discriminator.
Value when condition is false.
Value when condition is true.
Ternary selection:
condition ? whenTrue : whenFalse.For inline value choices driven by a business condition. Both branches are evaluated lazily as in the source language's ternary operator.