REBOL Programming/maximum-of

< REBOL Programming

USAGE:

MAXIMUM-OF series /skip size /case 

DESCRIPTION:

Finds the largest value in a series

MAXIMUM-OF is a native value.

ARGUMENTS:

REFINEMENTS:

SOURCE CODE

maximum-of: native[
    "Finds the largest 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"
]
This article is issued from Wikibooks. The text is licensed under Creative Commons - Attribution - Sharealike. Additional terms may apply for the media files.