From af4505deccef39d542a79c1d396a1fbbdb9e2cee Mon Sep 17 00:00:00 2001 From: hadley Date: Thu, 23 Jan 2025 19:45:16 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/purrr@00b4e550fa38f569dc16e46996f250f43b1bfc11=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/pkgdown.yml | 2 +- dev/reference/as_mapper.html | 12 ++++++------ dev/reference/partial.html | 4 ++-- dev/search.json | 2 +- 4 files changed, 10 insertions(+), 10 deletions(-) diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 58d9d6ae..2d5a3d1d 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:42Z +last_built: 2025-01-23T19:44Z 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 723d9f68..4d5049be 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: 0x55e270220610>
+#> <environment: 0x556e7bb9db50>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x55e27006b0f8>
+#> <environment: 0x556e7b9e8f30>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x55e26fc2cae8>
+#> <environment: 0x556e7b5a71b8>
 # 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: 0x55e26fb88950>
+#> <environment: 0x556e7b506d70>
 # 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: 0x55e26f837978>
+#> <environment: 0x556e7b1b1a98>
 # 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: 0x55e26f758d68>
+#> <environment: 0x556e7b0d3470>