Top index Wirbel home

::column

list(list(A)).column(int col) - return column of list-table

list(list(A)).column(int col) works on lists of lists and looks upon that as a table. It returns one of the columns of the table.

Examples

 [ [1,2,3], [4,5,6], [7,8,9] ].column(2) == [3,6,9]