A common scenario for me is to map over nested lists. AFAIK there is no built in or purr functionality for this. Basically an rapply version but which would operate not just on leaves but also on the inner nodes. Example: ```R rmap(sessionInfo(), unclass) ```