# Functions
Abs returns the absolute value of the given number @function.
Ceil returns the least integer value greater than or equal to x.
Floor returns the greatest integer value less than or equal to x.
Max returns with the greatest value @function.
Min returns with the lowest value @function.
Round returns the nearest integer, rounding half away from zero.
Trunc returns the integer value of x.
# Structs
AbsInterpreter is the Conflow interpreter for the Abs function.
CeilInterpreter is the Conflow interpreter for the Ceil function.
FloorInterpreter is the Conflow interpreter for the Floor function.
MaxInterpreter is the Conflow interpreter for the Max function.
MinInterpreter is the Conflow interpreter for the Min function.
RoundInterpreter is the Conflow interpreter for the Round function.
TruncInterpreter is the Conflow interpreter for the Trunc function.