lenses icon indicating copy to clipboard operation
lenses copied to clipboard

Add a standard subsetting promoter

Open cfhammill opened this issue 5 years ago • 2 comments

Promote a standard accessor strings, probably limited to $, [, [[, @, to a lens e.g

promote_l( ~ .[[1]]$col[[2]]@slt[1:5] ) 

equal to

index(1) %.% 
  index("col") %.% 
  index(2) %.% 
  slot_l("slt") %.% 
  indices(1:5)

cfhammill avatar Oct 10 '18 17:10 cfhammill