API for greatest-least
- ()
by Vincent Foley
Usage:
(ns your-namespace
(:require clojure.contrib.greatest-least))
Overview
Various functions for finding greatest and least values in a collection
Public Variables and Functions
all-greatest
function
Usage: (all-greatest & args)
Returns all the greatest elements.
Source
all-greatest-by
function
Usage: (all-greatest-by f & args)
Return all the elements for which f yields the greatest value.
Source
all-least
function
Usage: (all-least & args)
Returns all the least elements.
Source
all-least-by
function
Usage: (all-least-by f & args)
Return all the elements for which f yields the least value.
Source
greatest
function
Usage: (greatest & args)
Return the greatest argument.
Source
greatest-by
function
Usage: (greatest-by f & args)
Return the argument for which f yields the greatest value.
Source
least
function
Usage: (least & args)
Return the smallest element.
Source
least-by
function
Usage: (least-by f & args)
Return the argument for which f yields the smallest value.
Source