purrr
purrr copied to clipboard
A functional programming toolkit for R
`list_rbind()` has the old argument of `id`. Fixed it to have `list_rbind(names_to = "simulation")`
* purrr 0.3.0 was released on 2019-01-27 so can move to `deprecate_stop()` (or removal) * purrr 1.0.0 was released on 2022-12-20 so can move to `deprecate_warn()`
The recently introduced indexed error messages are super helpful, many thanks! However, I’ve spent some time head-scratching recently because I had some ill-sorted named lists that I wanted to merge...
The documentation in `map2.R` inherits from `map.R` for the Value section: ``` #' @inherit map return ``` This is okay for the first 3 bullets. However, for the final bullet,...
Trying to address #915 @sierrajohnson and I started a rough draft and want to get some feedback before get in too deep in the wrong direction. Happy to contribute post...
This looks like a pretty simple conversion because purrr only defines a couple of new S3 classes via `new_rate()`. To tackle this task for TDD, you'll need some prior knowledge...