diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 2d5a3d1d..bd3494e3 100644 --- a/dev/pkgdown.yml +++ b/dev/pkgdown.yml @@ -4,7 +4,7 @@ pkgdown_sha: ~ articles: base: base.html other-langs: other-langs.html -last_built: 2025-01-23T19:44Z +last_built: 2025-01-23T19:47Z urls: reference: https://purrr.tidyverse.org/reference article: https://purrr.tidyverse.org/articles diff --git a/dev/reference/as_mapper.html b/dev/reference/as_mapper.html index 4d5049be..c13d767c 100644 --- a/dev/reference/as_mapper.html +++ b/dev/reference/as_mapper.html @@ -111,35 +111,35 @@

Examples
as_mapper(\(x) x + 1)
 #> function (x) 
 #> x + 1
-#> <environment: 0x556e7bb9db50>
+#> <environment: 0x55b7c4ed2288>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x556e7b9e8f30>
+#> <environment: 0x55b7c4d22be8>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x556e7b5a71b8>
+#> <environment: 0x55b7c48deea8>
 # Equivalent to function(x) x[["a"]][["b"]][["c"]]
 
 as_mapper(list(1, "a", 2))
 #> function (x, ...) 
 #> pluck_raw(x, list(1, "a", 2), .default = NULL)
-#> <environment: 0x556e7b506d70>
+#> <environment: 0x55b7c483e9f0>
 # Equivalent to function(x) x[[1]][["a"]][[2]]
 
 as_mapper(list(1, attr_getter("a")))
 #> function (x, ...) 
 #> pluck_raw(x, list(1, function (x) 
 #> attr(x, attr, exact = TRUE)), .default = NULL)
-#> <environment: 0x556e7b1b1a98>
+#> <environment: 0x55b7c44e6390>
 # Equivalent to function(x) attr(x[[1]], "a")
 
 as_mapper(c("a", "b", "c"), .default = NA)
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NA)
-#> <environment: 0x556e7b0d3470>
+#> <environment: 0x55b7c441a408>