Fork me on GitHub
#clojure
<
2016-06-04
>
fasiha00:06:06

@brian_mingus: (interleave [1 2 3] [4 5 6] [7 8 9]) takes you half-way there: (1 4 7 2 5 8 3 6 9). You can get the rest of the way with partition: (partition 3 (interleave [1 2 3] [4 5 6] [7 8 9])) ; =>((1 4 7) (2 5 8) (3 6 9))

fasiha00:06:35

Tho it'll be hard to top (map vector …) which is excellent

skrat01:06:47

@seancorfield: did you find out what's up with http://crossclj.info?

seancorfield01:06:18

@skrat: Possibly just problems at the host — It runs on a small Digital Ocean image so sometimes it bogs down according to @crossclojure on Twitter: https://twitter.com/crossclojure/with_replies (edited to have easier to read conversation view)