Hullo,
If I've got a function
foo <- function(list, name)
where I would want
foo(list, c("a", "b", "c"))
to return
list[[a]][[b]][[c]]
and also fail gracefully if list[[a]][[b]][[c]] doesn't exist,
How do I accomplish this ideally in base R?