Class MaxFunction

java.lang.Object
com.api.jsonata4java.expressions.functions.FunctionBase
com.api.jsonata4java.expressions.functions.MaxFunction

public class MaxFunction extends FunctionBase
From http://docs.jsonata.org/aggregation-functions.html $max(array) Returns the maximum number in an array of numbers. It is an error if the input array contains an item which isn’t a number. Example $max([5,1,3,7,4])==7