Given a list of lists, e.g. ((abcd) (efgh) (ijkl) (mnop) (qrst)) , I would like to write a conversion to a new list of lists consisting of the first element from each list, after the second element from each list, etc. d. (in my example, the result of this will be ((aeimq) (bfjnr) (cgkos) (dhlpt)) ).
Does this operation have a different name besides zip ? If so, what is this name?
source share