R/flatten_list_of_lists.R
flatten_list_of_lists.RdThis 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)The list of lists.
A list of atomic vectors.