跳转到内容

Rebol 编程/minimum-of

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

找到一系列中的最小值

MINIMUM-OF 是一个原生值。

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

源代码

[编辑 | 编辑源代码]
minimum-of: native[
    "Finds the smallest 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"
]
华夏公益教科书