|
dat <- bit:::R_bit_as_hi(x, range, 0L) |
I'm not sure why, but the current version of {bit} started generating NOTEs from R CMD check:
Unexported object imported by a ':::' call: ‘bit:::R_bit_as_hi’
See the note in ?`:::` about the use of this operator.
That's been there for 13 years, I'm not sure what's changed to generate the NOTE.
How would you like to proceed?
- I can export
R_bit_as_hi from {bit}
- We can hack around the
R CMD check ding, e.g. get("R_bit_as_hi", asNamespace("bit"), inherits = FALSE)
- ...