Skip to content

Commit e2b9586

Browse files
committed
Deploying to gh-pages from @ 0f402ab 🚀
1 parent 461abea commit e2b9586

File tree

8 files changed

+40
-28
lines changed

8 files changed

+40
-28
lines changed

dev/news/index.html

Lines changed: 7 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/news/index.md

Lines changed: 19 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,25 @@
22

33
## dplyr (development version)
44

5+
- [`if_any()`](https://dplyr.tidyverse.org/dev/reference/across.md) and
6+
[`if_all()`](https://dplyr.tidyverse.org/dev/reference/across.md) are
7+
now more consistent in all use cases
8+
([\#7059](https://github.com/tidyverse/dplyr/issues/7059),
9+
[\#7077](https://github.com/tidyverse/dplyr/issues/7077),
10+
[\#7746](https://github.com/tidyverse/dplyr/issues/7746),
11+
[@jrwinget](https://github.com/jrwinget)). In particular:
12+
13+
- When called with zero inputs,
14+
[`if_any()`](https://dplyr.tidyverse.org/dev/reference/across.md)
15+
returns `FALSE` and
16+
[`if_all()`](https://dplyr.tidyverse.org/dev/reference/across.md)
17+
returns `TRUE`.
18+
19+
- When called with one input, both now return logical vectors rather
20+
than the original column.
21+
22+
- The result of applying `.fns` now must be a logical vector.
23+
524
- `tally_n()` creates fully qualified funciton calls for duckplyr
625
compatibility
726
([\#7046](https://github.com/tidyverse/dplyr/issues/7046))
@@ -211,18 +230,6 @@
211230
[`ncol()`](https://rdrr.io/r/base/nrow.html)
212231
([\#7049](https://github.com/tidyverse/dplyr/issues/7049)).
213232

214-
- [`if_any()`](https://dplyr.tidyverse.org/dev/reference/across.md) and
215-
[`if_all()`](https://dplyr.tidyverse.org/dev/reference/across.md) are
216-
now fully consistent with [`any()`](https://rdrr.io/r/base/any.html)
217-
and [`all()`](https://rdrr.io/r/base/all.html). In particular, when
218-
called with empty inputs
219-
[`if_any()`](https://dplyr.tidyverse.org/dev/reference/across.md)
220-
returns `FALSE` and
221-
[`if_all()`](https://dplyr.tidyverse.org/dev/reference/across.md)
222-
returns `TRUE`
223-
([\#7059](https://github.com/tidyverse/dplyr/issues/7059),
224-
[@jrwinget](https://github.com/jrwinget)).
225-
226233
### Lifecycle changes
227234

228235
#### Breaking changes

dev/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -11,7 +11,7 @@ articles:
1111
rowwise: rowwise.html
1212
two-table: two-table.html
1313
window-functions: window-functions.html
14-
last_built: 2025-11-18T14:36Z
14+
last_built: 2025-11-19T21:38Z
1515
urls:
1616
reference: https://dplyr.tidyverse.org/reference
1717
article: https://dplyr.tidyverse.org/articles

dev/reference/filter_all.html

Lines changed: 2 additions & 2 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/reference/filter_all.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -80,12 +80,12 @@ all_vars(is.na(.))
8080
#> <predicate intersection>
8181
#> <quosure>
8282
#> expr: ^is.na(.)
83-
#> env: 0x5600a0b37460
83+
#> env: 0x559f0eca45a0
8484
any_vars(is.na(.))
8585
#> <predicate union>
8686
#> <quosure>
8787
#> expr: ^is.na(.)
88-
#> env: 0x5600a0b37460
88+
#> env: 0x559f0eca45a0
8989

9090

9191
# You can take the intersection of the replicated expressions:

dev/reference/funs.html

Lines changed: 4 additions & 4 deletions
Some generated files are not rendered by default. Learn more about customizing how changed files appear on GitHub.

dev/reference/funs.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -63,12 +63,12 @@ list(mean = mean, mean = ~ mean(.x, na.rm = TRUE))
6363
#> $mean
6464
#> function (x, ...)
6565
#> UseMethod("mean")
66-
#> <bytecode: 0x560091872df0>
66+
#> <bytecode: 0x559f01d7cdf0>
6767
#> <environment: namespace:base>
6868
#>
6969
#> $mean
7070
#> ~mean(.x, na.rm = TRUE)
71-
#> <environment: 0x5600a00eb778>
71+
#> <environment: 0x559f06b0ae68>
7272
#>
7373

7474
funs(m1 = mean, m2 = "mean", m3 = mean(., na.rm = TRUE))
@@ -89,14 +89,14 @@ list(m1 = mean, m2 = "mean", m3 = ~ mean(.x, na.rm = TRUE))
8989
#> $m1
9090
#> function (x, ...)
9191
#> UseMethod("mean")
92-
#> <bytecode: 0x560091872df0>
92+
#> <bytecode: 0x559f01d7cdf0>
9393
#> <environment: namespace:base>
9494
#>
9595
#> $m2
9696
#> [1] "mean"
9797
#>
9898
#> $m3
9999
#> ~mean(.x, na.rm = TRUE)
100-
#> <environment: 0x5600a00eb778>
100+
#> <environment: 0x559f06b0ae68>
101101
#>
102102
```

dev/search.json

Lines changed: 1 addition & 1 deletion
Large diffs are not rendered by default.

0 commit comments

Comments
 (0)