REBOL 3 Docs | Guide | Concepts | Functions | Datatypes | Errors |
TOC < Back Next > | Updated: 3-Aug-2010 Edit History |
Finds the largest 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 maximum value.
probe maximum-of [34 6 60 59 5]
[60 59 5]
probe maximum-of ["abc" "def" "xyz" "aaa" "efg"]
["xyz" "aaa" "efg"]
TOC < Back Next > | REBOL.com - WIP Wiki | Feedback Admin |