clojure.parallel

(source)
DEPRECATED Wrapper of the ForkJoin library (JSR-166).

For more info about this library see:

https://clojuredocs.org/clojure.core
Public Variable Short Description
pany (clj) Returns some (random) element of the coll if it satisfies the bound/filter/map.
par (clj) Creates a parallel array from coll.
pdistinct (clj) Returns a parallel array of the distinct elements of coll.
pfilter-dupes (clj) Returns a vector containing the (realized) elements of coll, without any consecutive duplicates.
pfilter-nils (clj) Returns a vector containing the non-nil (realized) elements of coll.
pmax (clj) Returns the maximum element, presuming Comparable elements, unless a Comparator comp is supplied.
pmin (clj) Returns the minimum element, presuming Comparable elements, unless a Comparator comp is supplied.
preduce (clj) Returns the reduction of the realized elements of coll using function f.
psort (clj) Returns a new vector consisting of the realized items in coll, sorted, presuming Comparable elements, unless a Comparator comp is supplied.
psummary (clj) Returns a map of summary statistics (min.
pvec (clj) Returns the realized contents of the parallel array pa as a Clojure vector.