< Rebol Programming

USAGE:

MAXIMUM-OF series /skip size /case 

DESCRIPTION:

Finds the largest value in a series

MAXIMUM-OF is a native value.

ARGUMENTS:

  • series -- Series to search (Type: series)

REFINEMENTS:

  • /skip -- Treat the series as records of fixed size
    • size -- (Type: integer)
  • /case -- Perform case-sensitive comparisons

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.