Fork me on GitHub
#clojure
<
2016-05-21
>
kenbier01:05:47

is there a clever way to take a vector of vectors and get all the first elems, then second, … then nth?

kenbier02:05:45

[[1 2 3] [4 5 6] [789]] => [[1 4 7] [2 5 8] [3 6 9]]

hodapp02:05:25

"transpose" is the usual name of that operation

kenbier02:05:04

ah thats what im looking for thanks @hodapp !!

josh_tackett02:05:52

Anyone know the setting for lighttable that causes both parens to erase if you delete one of them?

josh_tackett02:05:09

Anyone know how to rename a file with clojure?