Returns a string representation of the function with the specified arguments (see FuncDefinition). @param args arguments @return string representation with leading space (simplifies nesting of returned string)
(final Object... args)
| 43 | * @return string representation with leading space (simplifies nesting of returned string) |
| 44 | */ |
| 45 | default String args(final Object... args) { |
| 46 | return definition().args(false, args); |
| 47 | } |
| 48 |
no outgoing calls