Function max2All

  • Get a larger number from two possibly empty numbers. Returns None when any operand is None.

    Parameters

    Returns ((b) => Opt<number>)

    Example

    max2All(1)(2) // Some(2)
    max2All(1)(null) // None
    max2All(null)(null) // None

Generated using TypeDoc