We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
#(listlist-transpose lst) listlist-transpose transposes a list of lists
Example 1: Transpose a list (from 2 sublists of length 3, to 3 sublists of length 2)
> (define lst (list (list 1 2 3) (list 3 4 5))) > (listlist-transpose lst) ((1 3) (2 4) (3 5))
Sorry, there was an error rendering this page.