max

Function max 

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

获取数组中的最大值

§功能

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

§参数

  • array: Array - 数字数组

§返回值

Number - 数组中的最大值

§错误

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

§示例

Set nums [3, 7, 2, 9, 1]
Set maximum Max(nums)        # 9
Set scores [85.5, 92.0, 78.5, 95.5]
Set highest Max(scores)      # 95.5