API for seq-utils - clojure-contrib v1.2 (stable)

by Stuart Sierra (and others)

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.seq-utils

Overview

Sequence utilities for Clojure
Deprecated since clojure-contrib version 1.2

Public Variables and Functions



fill-queue

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (fill-queue filler-func & optseq)
filler-func will be called in another thread with a single arg
'fill'.  filler-func may call fill repeatedly with one arg each
time which will be pushed onto a queue, blocking if needed until
this is possible.  fill-queue will return a lazy seq of the values
filler-func has pushed onto the queue, blocking if needed until each
next element becomes available.  filler-func's return value is ignored.
Source


find-first

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (find-first pred coll)
Returns the first item of coll for which (pred item) returns logical true.
Consumes sequences up to the first match, will consume the entire sequence
and return nil if no match is found.
Source


flatten

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (flatten x)
DEPRECATED. Prefer clojure.core version.
Takes any nested combination of sequential things (lists, vectors,
etc.) and returns their contents as a single, flat sequence.
(flatten nil) returns nil.
Deprecated since clojure-contrib version 1.2
Source


frequencies

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (frequencies coll)
DEPRECATED. Prefer clojure.core version.
Returns a map from distinct items in coll to the number of times
they appear.
Deprecated since clojure-contrib version 1.2
Source


group-by

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (group-by f coll)
DEPRECATED. Prefer clojure.core version.
 Returns a sorted map of the elements of coll keyed by the result of
f on each element. The value at each key will be a vector of the
corresponding elements, in the order they appeared in coll.
Deprecated since clojure-contrib version 1.2
Source


includes?

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (includes? coll x)
Returns true if coll contains something equal (with =) to x,
in linear time. Deprecated. Prefer 'contains?' for key testing,
or 'some' for ad hoc linear searches.
Deprecated since clojure-contrib version 1.2
Source


indexed

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (indexed s)
Returns a lazy sequence of [index, item] pairs, where items come
from 's' and indexes count up from zero.

(indexed '(a b c d))  =>  ([0 a] [1 b] [2 c] [3 d])
Source


partition-all

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (partition-all n coll)
       (partition-all n step coll)
DEPRECATED. Prefer clojure.core version.
Returns a lazy sequence of lists like clojure.core/partition, but may
include lists with fewer than n items at the end.
Deprecated since clojure-contrib version 1.2
Source


partition-by

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (partition-by f coll)
DEPRECATED. Prefer clojure.core version.
Applies f to each value in coll, splitting it each time f returns
a new value.  Returns a lazy seq of lazy seqs.
Deprecated since clojure-contrib version 1.2
Source


positions

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (positions pred coll)
Returns a lazy sequence containing the positions at which pred
is true for items in coll.
Source


rand-elt

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (rand-elt s)
DEPRECATED. Prefer clojure.core/rand-nth.
Return a random element of this seq
Deprecated since clojure-contrib version 1.2
Source


rec-cat

macro
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (rec-cat binding-name & exprs)
Similar to lazy-cat but binds the resulting sequence to the supplied
binding-name, allowing for recursive expressions.
Source


rec-seq

macro
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (rec-seq binding-name & body)
Similar to lazy-seq but binds the resulting seq to the supplied
binding-name, allowing for recursive expressions.
Source


reductions

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (reductions f coll)
       (reductions f init coll)
DEPRECATED. Prefer clojure.core version.
Returns a lazy seq of the intermediate values of the reduction (as
per reduce) of coll by f, starting with init.
Deprecated since clojure-contrib version 1.2
Source


rotations

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (rotations x)
Returns a lazy seq of all rotations of a seq
Source


separate

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (separate f s)
Returns a vector:
[ (filter f s), (filter (complement f) s) ]
Source


seq-on

multimethod
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (seq-on s)
Returns a seq on the object s. Works like the built-in seq but as
a multimethod that can have implementations for new classes and types.
Source


shuffle

function
This library, clojure-contrib, is deprecated. See here for more information.
Usage: (shuffle coll)
DEPRECATED. Prefer clojure.core version.
Return a random permutation of coll
Deprecated since clojure-contrib version 1.2
Source
Logo & site design by Tom Hickey.
Clojure auto-documentation system by Tom Faulhaber.