|
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)
- ...
ff/R/ffbit.R
Line 82 in d9dd755
I'm not sure why, but the current version of {bit} started generating
NOTEs fromR CMD check:That's been there for 13 years, I'm not sure what's changed to generate the
NOTE.How would you like to proceed?
R_bit_as_hifrom {bit}R CMD checkding, e.g.get("R_bit_as_hi", asNamespace("bit"), inherits = FALSE)