A short-handed ternary operation `x ? y` is an equivalent of the `x ? y : null`. This is differs from Elvis operator `x ?: y` which is effectively `x ? x : y`. The `x : y` operator is analogous to `if (x) y` statement with `else` part ommited
[ Full content available at: https://github.com/apache/commons-jexl/pull/13 ] This message was relayed via gitbox.apache.org for [email protected]
