min function

Syntax

  • float min(a, b)
  • string min(a, b)
  • float[] min(a, b)
  • string[] min(a, b)

Parameters

  1. a—(float, string, float[], string[])
  2. b—(float, string, float[], string[])

    Must be the same type as a.

Returns

Returns minimum of a and b. For arrays, the operation is applied element-wise and an array with the pairwise minima is returned.

Related

Examples

min(10, -10)
# result = -10
min("abc", "def")
# result = "abc"