R/simplify_list.R
list_df.Rd
Determines whether a leaf node contains an object that can be converted to a dataframe.
list_df(l)
A list.
is_leaf_table simplify_list
is_leaf_table
simplify_list
if (FALSE) { list_df(list(A = list(X = 1:10, Y = letters[1:10]))) list_df(list(A = 1:10, B = "Text", C = c("text", "text"))) # no conversion }