Version 2026.8.4
-
.Rbuildignorenow excludesindex.mdandRplots.pdf, so the pkgdown home page body no longer ships in the source tarball and no longer raises a top-level-fileNOTE. - Expanded
README.mdwith installation, a quick start, and a table naming which function to reach for. - Every exported function now carries an
@seealsopointing at thecsutilvignette. All seven appear in a vignette code chunk. - Corrected
apply_fn_via_hash_table(): the documentation saidfnwas called once per unique value. It is called exactly once, on the whole vector of unique values, sofnmust be vectorised. - Corrected
easy_split(): the documentation promised “equally sized vectors”. Every group has the same length except the last, which may be shorter.number_of_groupsis also a request rather than a guarantee —easy_split(1:4, number_of_groups = 3)returns two groups, not three. - Corrected
unnest_dfs_within_list_of_fully_named_lists(): it returnsNULLwhenxis not a list, which the@returnsection did not say. Documented both branches and the sorted-union naming of the result. - Documented that
is_fully_named_list(list())returnsFALSE.
Version 2026.7.27
-
.Rbuildignorenow excludes the rendered pkgdown site (docs/,pkgdown/) so it is not included in the source tarball. - The four
is_*list predicates now cross-reference each other via@family list predicates. - Added a
testthat(edition 3) test suite covering all seven exported functions. The suite pins the shipped behaviour, including the deliberate asymmetry whereis_fully_named_list(list())returnsFALSEwhile the threeis_all_list_elements_null_or_*()predicates returnTRUE.
Version 2023.4.25
CRAN release: 2023-04-25
-
apply_fn_via_hash_tableextracts the unique input values, applies the given function to it to create a hash table (containing unique input/output combinations), and then matches the original input to the hash table to obtain the desired output. This can dramatically speed up computation if there is a lot of data and a limited amount of unique values. - Submitted to CRAN
Version 2022.6.8
- Submitted to CRAN
- all_list_elements_null_or_df renamed to is_all_list_elements_null_or_df
- all_list_elements_null_or_list renamed to is_all_list_elements_null_or_list
- all_list_elements_null_or_fully_named_list renamed to is_all_list_elements_null_or_fully_named_list
- split_equal renamed to easy_split
Version 2022.4.28
- split_equal (Split a vector into a list with equal sized elements)
- is_fully_named_list (Is this a fully named list?)
- all_list_elements_null_or_df (Are all elements in a list null or data.frames?)
- all_list_elements_null_or_list (Are all elements in a list null or lists?)
- all_list_elements_null_or_fully_named_list (Are all elements in a list null or fully named lists?)
- unnest_dfs_within_fully_named_list (Unnest data.frames within fully named list)
