Add "empty A" operator with same precedence as "not" and unary minus. empty A evaluates to true if: A is null A is a zero-length String A is a zero-length array A is a List and ((List) A).isEmpty() A is a Map and ((Map) A).isEmpty() otherwise empty A evaluates to false
The empty EL operator has been added as EmptyOperator.java