Liking cljdoc? Tell your friends :D

molecula.util


with-timeoutcljmacro

(with-timeout t-ms & body)
source

with-timeout-fnclj

(with-timeout-fn t-ms f)
source

zipseqclj

(zipseq & colls)

Returns a lazy sequence of partitions of interleaved colls. Given c1, c2, ..., cn of the same length returns:

'(((first  c1) (first  c2) ... (first  cn))
  ((second c1) (second c2) ... (second cn))
  ...
  ((last   c1) (last   c2) ... (last   cn)))

If lengths are different then the returned seq will have the length of the shortest collection (like with ) return upto the length of the shortest collection and the tails of other collection discarded. There is no padding like with partition for example.

Returns a lazy sequence of partitions of interleaved colls.
Given `c1, c2, ..., cn` of the same length returns:
```
'(((first  c1) (first  c2) ... (first  cn))
  ((second c1) (second c2) ... (second cn))
  ...
  ((last   c1) (last   c2) ... (last   cn)))
```
If lengths are different then the returned seq will have the length of the shortest collection (like with ) return upto the length of the shortest collection and the tails of other collection discarded. There is no padding like with `partition` for example.
sourceraw docstring

zipvecclj

(zipvec & colls)

Like zipseq but returns all vectors.

Like zipseq but returns all vectors.
sourceraw docstring

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

× close