REBOL 3 Docs Guide Concepts Functions Datatypes Errors
  TOC < Back Next >   Updated: 3-Aug-2010 Edit History  

REBOL 3 Functions: maximum-of

maximum-of  series  /skip  size

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:

min   max  

Description

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