From 4892722b93c31ccc39c08ca3d7200c37fac28bb9 Mon Sep 17 00:00:00 2001 From: hadley Date: Tue, 20 Aug 2024 20:53:42 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/purrr@6520dc0d11b4cc320c29edb61f3a891404585a1f=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/news/index.html | 4 +++- dev/pkgdown.yml | 2 +- dev/reference/as_mapper.html | 12 ++++++------ dev/reference/partial.html | 4 ++-- dev/search.json | 2 +- 5 files changed, 13 insertions(+), 11 deletions(-) diff --git a/dev/news/index.html b/dev/news/index.html index 4d522d4d..c4574299 100644 --- a/dev/news/index.html +++ b/dev/news/index.html @@ -46,7 +46,9 @@

purrr (development version)

-
diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 90e25a98..e1cfdf18 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: 2024-08-20T20:47Z +last_built: 2024-08-20T20:52Z 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 3b1431d9..afbdc29e 100644 --- a/dev/reference/as_mapper.html +++ b/dev/reference/as_mapper.html @@ -110,35 +110,35 @@

ArgumentsExamples

as_mapper(\(x) x + 1)
 #> \(x) x + 1
-#> <environment: 0x55ea9753ad18>
+#> <environment: 0x555fa5485dd8>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x55eaa0d167b8>
+#> <environment: 0x555face432b0>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x55ea9ee91830>
+#> <environment: 0x555faeacf7b0>
 # 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: 0x55eaa0d57cb0>
+#> <environment: 0x555faf498dc0>
 # 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: 0x55ea9ed99370>
+#> <environment: 0x555facb896f0>
 # 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: 0x55eaa18421e8>
+#> <environment: 0x555fae9e2ca8>