REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 3-Aug-2010 Edit History |
Finds the smallest value in a series
Arguments:
series [series!] - Series to search
Refinements:
/skip - Treat the series as records of fixed size
size [integer!]
See also:
Return the series at the position of its minimum value.
probe minimum-of [34 20 4 6 60]
[4 6 60]
probe minimum-of ["abc" "def" "xy" "aaaxy" "efg"]
["aaaxy" "efg"]
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |