Checks if the specified expression is an instance of this function. @param ex expression @return result of check
(final Expr ex)
| 33 | * @return result of check |
| 34 | */ |
| 35 | default boolean is(final Expr ex) { |
| 36 | return ex instanceof final StandardFunc sf && sf.definition == definition(); |
| 37 | } |
| 38 |
no outgoing calls