These options will be used on objects of class 'integer64'.
Usage
opts_integer64(constructor = c("as.integer64", "next", "double"), ...)
Details
Depending on constructor
, we construct the object as follows:
"as.integer64"
(default): Build the object usingas.integer64()
on a character vector."next"
: Use the constructor for the next supported class. Call.class2()
on the object to see in which order the methods will be tried."double"
: We define as an atomic vector and repair attributes.
We don't recommend the "next" and "double" constructors for this class as
they give incorrect results on negative or NA
"integer64" objects
due to some quirks in the implementation of the 'bit64' package.