Skip to content

Commit e2e4e74

Browse files
Add an .onAttach message requesting use cases as asked by R Core (#363)
1 parent 97bbd63 commit e2e4e74

2 files changed

Lines changed: 11 additions & 0 deletions

File tree

NEWS.md

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -26,6 +26,8 @@
2626

2727
1. The R version dependency has been bumped from 3.5.0 (2018) to 3.6.0 (2019).
2828

29+
1. R Core is considering adding native support for 64-bit integer vectors. `library(bit64)` will temporarily flash a request for use cases of 64-bit integers as posed by Luke Tierney: https://stat.ethz.ch/pipermail/r-devel/2026-July/084631.html.
30+
2931
# bit64 4.8.2 (2026-05-19)
3032

3133
## BUG FIXES

R/zzz.R

Lines changed: 9 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,15 @@
1313
}
1414
# nocov end
1515

16+
.onAttach = function(libname, pkgname) {
17+
packageStartupMessage(
18+
strrep("*", .7*getOption("width")), "\n",
19+
"R-core is collecting use cases for 64-bit integers as they explore native support for these vectors.\n\n",
20+
"See https://stat.ethz.ch/pipermail/r-devel/2026-July/084631.html and reach out to Luke Tierney (luke-tierney@uiowa.edu).\n",
21+
strrep("*", .7*getOption("width")), "\n"
22+
)
23+
}
24+
1625
if (getRversion() < "4.4.0") {
1726
# nolint next: coalesce_linter.
1827
`%||%` = function(x, y) if (is.null(x)) y else x

0 commit comments

Comments
 (0)