diff --git a/dev/pkgdown.yml b/dev/pkgdown.yml index d3bb104e..587240bb 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:47Z +last_built: 2024-07-15T20:49Z 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 9b2a7b7e..52f870fe 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: 0x562a40a46a18>
+#> <environment: 0x55e3518a6e20>
 as_mapper(1)
 #> function (x, ...) 
 #> pluck_raw(x, list(1), .default = NULL)
-#> <environment: 0x562a4a14fab8>
+#> <environment: 0x55e358270450>
 
 as_mapper(c("a", "b", "c"))
 #> function (x, ...) 
 #> pluck_raw(x, list("a", "b", "c"), .default = NULL)
-#> <environment: 0x562a4aa7e198>
+#> <environment: 0x55e35a31c720>
 # 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: 0x562a482738b8>
+#> <environment: 0x55e35a7dbaa0>
 # 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: 0x562a4a8ca630>
+#> <environment: 0x55e35a9d3b68>
 # 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: 0x562a4aafba98>
+#> <environment: 0x55e35abc5030>