From 527c626a0df5ecbb50fd7919eb1e58489ba8b413 Mon Sep 17 00:00:00 2001 From: DavisVaughan Date: Mon, 5 Aug 2024 19:12:34 +0000 Subject: [PATCH] =?UTF-8?q?Deploying=20to=20gh-pages=20from=20@=20tidyvers?= =?UTF-8?q?e/purrr@73a291c0a9712c56f4d24c4d0e04d3839b9a0666=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 7695457d..418fadff 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-17T16:24Z +last_built: 2024-08-05T19:11Z 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 98a885a6..97d246f5 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: 0x5573af6289c8>
+#> <environment: 0x55fcd442fe38>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x5573b69ac610>
+#> <environment: 0x55fcd351c018>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x5573b933c3f0>
+#> <environment: 0x55fcdd5d0710>
 # 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: 0x5573b6a2e2f0>
+#> <environment: 0x55fcdabbc200>
 # 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: 0x5573b8a0ff18>
+#> <environment: 0x55fcdae31b40>
 # 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: 0x5573b911d168>
+#> <environment: 0x55fcdd73c5f8>