JanetDocsPlaygroundI'm feeling luckyGitHub sign in

extreme



    function
    boot.janet on line 718, column 1

    (extreme order args)

    Returns the most extreme value in `args` based on the function 
    `order`. `order` should take two values and return true or false (a 
    comparison). Returns nil if `args` is empty.


1 exampleSign in to add an example
Loading...
(extreme < [1 2 3])  # => 1
(extreme > [1 2 3])  # => 3
cellularmitosisPlayground