The rapply tag has no wiki summary.
9
votes
1answer
116 views
Why do rapply and lapply handle NULL differently?
I'm aware that NULL values in lists can sometimes trip people up. I'm curious why in a specific instance lapply and rapply seem to treat NULL values differently.
l <- list(a = 1, c = NULL, d = 3)
...