434fa4bd26
NOTE: The result of `?.` and `?:` can't be assigned to primitives. So `int[] someArray = null; int l = someArray?.length` and `int s = params.size ?: 100` don't work. Do `def someArray = null; def l = someArray?.length` and `def s = params.size ?: 100` instead. Relates to #21748 |
||
---|---|---|
.. | ||
advanced-scripting.asciidoc | ||
expression.asciidoc | ||
fields.asciidoc | ||
native.asciidoc | ||
painless-debugging.asciidoc | ||
painless-syntax.asciidoc | ||
painless.asciidoc | ||
security.asciidoc | ||
using.asciidoc |