From 6bb3072a9b67f3dfc7e0388c67145bc7b5e8c4af Mon Sep 17 00:00:00 2001 From: hadley Date: Mon, 15 Jul 2024 20:06:55 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/purrr@68dc04253f800edf762d80609703854aaac89fa5=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/imap.html | 2 +- dev/reference/lmap.html | 2 +- dev/reference/map2.html | 2 +- dev/reference/map_depth.html | 6 +++--- dev/reference/map_if.html | 2 +- dev/reference/modify.html | 2 +- dev/reference/partial.html | 4 ++-- dev/reference/pmap.html | 2 +- dev/search.json | 2 +- 11 files changed, 19 insertions(+), 19 deletions(-) diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index 244920a0..69a7dd7c 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-07-15T20:02Z +last_built: 2024-07-15T20:06Z 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 85502c72..5d54152b 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: 0x5561a3807fb8>
+#> <environment: 0x55f466744ac8>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x5561a2f6a718>
+#> <environment: 0x55f470129938>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x5561a8b5b180>
+#> <environment: 0x55f4703d59f8>
 # 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: 0x5561ab26b528>
+#> <environment: 0x55f46fb08068>
 # 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: 0x5561aac9af88>
+#> <environment: 0x55f46db8c250>
 # 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: 0x5561a89a2028>
+#> <environment: 0x55f46dad8e98>