Liking cljdoc? Tell your friends :D

com.computesoftware.sorted-multiset


rsubseqclj

(rsubseq sc test key)
(rsubseq sc start-test start-key end-test end-key)

sc must be a sorted collection, test(s) one of <, <=, > or

=. Returns a reverse seq of those entries with keys ek for which (test (.. sc comparator (compare ek key)) 0) is true

sc must be a sorted collection, test(s) one of <, <=, > or
>=. Returns a reverse seq of those entries with keys ek for
which (test (.. sc comparator (compare ek key)) 0) is true
raw docstring

sorted-multisetclj

(sorted-multiset & keys)

Returns a new sorted Multiset with supplied keys. Any equal keys are handled as if by repeated uses of conj.

Returns a new sorted Multiset with supplied keys. Any equal keys are handled
as if by repeated uses of conj.
raw docstring

sorted-multiset-byclj

(sorted-multiset-by comparator & keys)

Returns a new sorted Multiset with supplied keys, using the supplied comparator. Any equal keys are handled as if by repeated uses of conj.

Returns a new sorted Multiset with supplied keys, using the supplied
comparator. Any equal keys are handled as if by repeated uses of conj.
raw docstring

subseqclj

(subseq sc test key)
(subseq sc start-test start-key end-test end-key)

sc must be a sorted collection, test(s) one of <, <=, > or

=. Returns a seq of those entries with keys ek for which (test (.. sc comparator (compare ek key)) 0) is true

sc must be a sorted collection, test(s) one of <, <=, > or
>=. Returns a seq of those entries with keys ek for
which (test (.. sc comparator (compare ek key)) 0) is true
raw docstring

cljdoc is a website building & hosting documentation for Clojure/Script libraries

× close