min

Function min 

Source
pub fn min(args: &[Value]) -> Result<Value, RuntimeError>
Expand description

获取数组中的最小值

§功能

返回数字数组中的最小值。

§参数

  • array: Array - 数字数组

§返回值

Number - 数组中的最小值

§错误

  • 空数组时抛出错误
  • 数组包含非数字元素时抛出类型错误

§示例

Set nums [3, 7, 2, 9, 1]
Set minimum Min(nums)        # 1
Set temps [18.5, 22.0, 15.5, 20.5]
Set lowest Min(temps)        # 15.5