flatten_list_of_lists {yum} | R Documentation |
This function takes a hierarchical structure of lists and extracts all atomic vectors, returning one flat list of all those vectors.
flatten_list_of_lists(x)
x |
The list of lists. |
A list of atomic vectors.
### First create a list of lists listOfLists <- list(list(list(1:3, 8:5), 7:7), list(1:4, 8:2)); yum::flatten_list_of_lists(listOfLists);