is_all_list_elements_null_or_df {csutil} | R Documentation |
Checks if A) 'x' is a list, B) All elements in 'x' are either null or data.frame.
is_all_list_elements_null_or_df(x)
x |
An object |
Boolean.
is_all_list_elements_null_or_df(data.frame())
is_all_list_elements_null_or_df(list(data.frame()))
is_all_list_elements_null_or_df(list(1, NULL))
is_all_list_elements_null_or_df(list(data.frame(), NULL))
is_all_list_elements_null_or_df(list("a"=1, 2))