Skip to content

Commit cf9d977

Browse files
committed
Deploying to gh-pages from @ 9a80368 🚀
1 parent f748e87 commit cf9d977

File tree

10 files changed

+45
-41
lines changed

10 files changed

+45
-41
lines changed

dev/articles/stability.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/articles/stability.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -235,7 +235,7 @@ c(mean, globalenv())
235235
#> [[1]]
236236
#> function (x, ...)
237237
#> UseMethod("mean")
238-
#> <bytecode: 0x5574d0c54b58>
238+
#> <bytecode: 0x55639c740418>
239239
#> <environment: namespace:base>
240240
#>
241241
#> [[2]]
@@ -563,7 +563,7 @@ if_else(x > 2, factor("small"), factor("big"))
563563
#> [1] <NA> big big small small
564564
#> Levels: small big
565565
if_else(x > 2, Sys.Date(), Sys.Date() + 7)
566-
#> [1] NA "2025-11-19" "2025-11-19" "2025-11-12" "2025-11-12"
566+
#> [1] NA "2025-11-21" "2025-11-21" "2025-11-14" "2025-11-14"
567567
```
568568

569569
By using

dev/news/index.html

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

dev/news/index.md

Lines changed: 3 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -2,6 +2,9 @@
22

33
## vctrs (development version)
44

5+
- Fixed the C level signature for the `exp_short_init_compact_seq()`
6+
callable.
7+
58
- Experimental “partial” type support has been removed. This idea never
69
panned out and was not widely used. The following functions have been
710
removed ([\#2101](https://github.com/r-lib/vctrs/issues/2101)):

dev/pkgdown.yml

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -6,7 +6,7 @@ articles:
66
s3-vector: s3-vector.html
77
stability: stability.html
88
type-size: type-size.html
9-
last_built: 2025-11-12T16:40Z
9+
last_built: 2025-11-14T13:22Z
1010
urls:
1111
reference: https://vctrs.r-lib.org/reference
1212
article: https://vctrs.r-lib.org/articles

dev/reference/vec_c.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/vec_c.md

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -129,14 +129,14 @@ vec_c(FALSE, 1L, 1.5)
129129

130130
# Date/times --------------------------
131131
c(Sys.Date(), Sys.time())
132-
#> [1] "2025-11-12" "2025-11-12"
132+
#> [1] "2025-11-14" "2025-11-14"
133133
c(Sys.time(), Sys.Date())
134-
#> [1] "2025-11-12 16:41:19 UTC" "2025-11-12 00:00:00 UTC"
134+
#> [1] "2025-11-14 13:23:19 UTC" "2025-11-14 00:00:00 UTC"
135135

136136
vec_c(Sys.Date(), Sys.time())
137-
#> [1] "2025-11-12 00:00:00 UTC" "2025-11-12 16:41:19 UTC"
137+
#> [1] "2025-11-14 00:00:00 UTC" "2025-11-14 13:23:19 UTC"
138138
vec_c(Sys.time(), Sys.Date())
139-
#> [1] "2025-11-12 16:41:19 UTC" "2025-11-12 00:00:00 UTC"
139+
#> [1] "2025-11-14 13:23:19 UTC" "2025-11-14 00:00:00 UTC"
140140

141141
# Factors -----------------------------
142142
c(factor("a"), factor("b"))

dev/reference/vec_count.html

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

dev/reference/vec_count.md

Lines changed: 13 additions & 13 deletions
Original file line numberDiff line numberDiff line change
@@ -127,17 +127,17 @@ head(x)
127127
# or not at all
128128
vec_count(x, sort = "none")
129129
#> key count
130-
#> 1 e 10
131-
#> 2 f 19
132-
#> 3 m 2
133-
#> 4 j 5
134-
#> 5 c 3
135-
#> 6 a 2
136-
#> 7 i 11
137-
#> 8 k 1
138-
#> 9 g 14
139-
#> 10 n 2
140-
#> 11 d 16
141-
#> 12 h 11
142-
#> 13 b 4
130+
#> 1 h 11
131+
#> 2 d 16
132+
#> 3 f 19
133+
#> 4 i 11
134+
#> 5 e 10
135+
#> 6 n 2
136+
#> 7 a 2
137+
#> 8 b 4
138+
#> 9 k 1
139+
#> 10 g 14
140+
#> 11 j 5
141+
#> 12 m 2
142+
#> 13 c 3
143143
```

dev/search.json

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

0 commit comments

Comments
 (0)