OM-MAX

[GENERIC-FUNCTION]


OM 6.1
Function Reference
ARGUMENTS:
  - a number or list [default = 1]
  - b number or list [default = 1]

Description:

Maximum of two numbers.

This function can be applied to numbers or lists.

Ex. (om-max 3 4) => 4
Ex. (om-max 3 '(1 2 3 4)) => (3 3 3 4)
Ex. (om-max '(4 3 2 1) '(1 2 3 4)) => (4 3 3 4)