Is there a way to get the list index name in my lapply() function? n = names(mylist) lapply(mylist, function(list.elem) { cat("What is the name of this list element?\n" })...
index() will give the first occurrence of an item in a list. Is there a neat trick which returns all indices in a list for an element? 17 s...