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"
]