跳转到内容

Rebol 编程/最大值

来自维基教科书,开放的书籍,面向开放的世界
MAXIMUM-OF series /skip size /case 

在系列中查找最大值

MAXIMUM-OF 是一个本机值。

  • series -- 要搜索的系列(类型:系列)
  • /skip -- 将系列视为固定大小的记录
    • size --(类型:整数)
  • /case -- 执行区分大小写的比较

源代码

[编辑 | 编辑源代码]
maximum-of: native[
    "Finds the largest value in a series" 
    series [series!] "Series to search" 
    /skip "Treat the series as records of fixed size" 
    size [integer!] 
    /case "Perform case-sensitive comparisons"
]
华夏公益教科书