static L getColumn(int col, Cl> matrix) { ret map(matrix, row -> get(row, col)); } static L getColumn(Cl> matrix, int col) { ret getColumn(col, matrix); }