All Implemented Interfaces:
PostfixMathCommandI, Serializable

public class GetOr extends NaryFunction
Gets the value associated with a key, or a default value.
map = {'x':2, 'y':3};
getOr(map, 'x', -1);
The function returns either the value associated with the key, supplied default value. If no value is associate with the key then nullValue is returned.
Since:
Jep 4.1
See Also: