API for greatest-least
- ()
by Vincent Foley
clojure-contrib is now deprecated
clojure-contrib is no longer being developed or maintained.
Rather than a single, monolithic, contributions library, Clojure now has
a set of separate libraries for each unit of functionality. The libraries
are in the Clojure GitHub organization at
https://github.com/clojure.
API documentation of the libraries can be found at
https://clojure.github.io.
If you're looking for a specific function or namespace from the old
clojure-contrib, see
"Where Did Clojure.Contrib Go".
Full namespace name:
clojure.contrib.greatest-least
Overview
Various functions for finding greatest and least values in a collection
Public Variables and Functions
all-greatest
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (all-greatest & args)
Returns all the greatest elements.
Source
all-greatest-by
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (all-greatest-by f & args)
Return all the elements for which f yields the greatest value.
Source
all-least
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (all-least & args)
Returns all the least elements.
Source
all-least-by
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (all-least-by f & args)
Return all the elements for which f yields the least value.
Source
greatest
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (greatest & args)
Return the greatest argument.
Source
greatest-by
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (greatest-by f & args)
Return the argument for which f yields the greatest value.
Source
least
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (least & args)
Return the smallest element.
Source
least-by
function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (least-by f & args)
Return the argument for which f yields the smallest value.
Source