Class FloorFunction

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

public class FloorFunction extends FunctionBase
http://docs.jsonata.org/numeric-functions.html $floor(number) Returns the value of number rounded down to the nearest integer that is smaller or equal to number. If number is not specified (i.e. this function is invoked with no arguments), then the context value is used as the value of number. Examples $floor(5)==5 $floor(5.3)==5 $floor(5.8)==5 $floor(-5.3)==-6