From 1ae9b46dc02d90d6e8bea3d48ca1431240f5354a Mon Sep 17 00:00:00 2001 From: hadley Date: Thu, 15 Aug 2024 21:17:44 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/purrr@d022c4ebcce4160f5bdabd7ed3a09b97f3df734f=20=F0=9F=9A=80?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- dev/news/index.html | 3 ++- dev/pkgdown.yml | 2 +- dev/reference/as_mapper.html | 12 ++++++------ dev/reference/imap.html | 2 ++ dev/reference/imap_vec.html | 8 ++++++++ dev/reference/index.html | 2 +- dev/reference/partial.html | 4 ++-- dev/search.json | 2 +- 8 files changed, 23 insertions(+), 12 deletions(-) create mode 100644 dev/reference/imap_vec.html diff --git a/dev/news/index.html b/dev/news/index.html index a635721d..4d522d4d 100644 --- a/dev/news/index.html +++ b/dev/news/index.html @@ -46,7 +46,8 @@

purrr (development version)

-
diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 9a606b58..eb906b4e 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-15T21:06Z +last_built: 2024-08-15T21:17Z 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 a5c5d1b4..6f5c1a77 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: 0x5568268b3370>
+#> <environment: 0x55cc9f8e5250>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x5568308cb600>
+#> <environment: 0x55cc9d436e60>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x5568308477b8>
+#> <environment: 0x55cc9d5f7760>
 # 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: 0x55682ff5fec8>
+#> <environment: 0x55cc9fb12348>
 # 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: 0x55682e090c08>
+#> <environment: 0x55cc9f14bdf0>
 # 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: 0x55682fe26010>
+#> <environment: 0x55cca0a4fed8>