The lens equivalent of attributes and attributes<-
attributes_l
An object of class lens
of length 2.
(x <- structure(1:10, important = "attribute"))#> [1] 1 2 3 4 5 6 7 8 9 10 #> attr(,"important") #> [1] "attribute"#> $important #> [1] "attribute" #>#> [1] 1 2 3 4 5 6 7 8 9 10 #> attr(,"important") #> [1] "feature"