Lens into the transpose of a matrix

t_l

Format

An object of class lens of length 2.

Examples

(x <- matrix(1:4, ncol = 2))
#> [,1] [,2] #> [1,] 1 3 #> [2,] 2 4
view(x, t_l)
#> [,1] [,2] #> [1,] 1 2 #> [2,] 3 4
set(x, t_l, matrix(11:14, ncol = 2))
#> [,1] [,2] #> [1,] 11 12 #> [2,] 13 14