Create expression that applies function to arguments.
(Expr<?> ... args)
| 372 | * Create expression that applies function to arguments. |
| 373 | **/ |
| 374 | public Expr<R> apply(Expr<?> ... args) |
| 375 | { |
| 376 | getContext().checkContextMatch(args); |
| 377 | return Expr.create(getContext(), this, args); |
| 378 | } |
| 379 | } |
no test coverage detected