option("collapse_unused_arg_action")
regulates how generic functions (such as the Fast Statistical Functions) in the package react when an unknown argument is passed to a method. The default action is "warning"
which issues a warning. Other options are "error"
, "message"
or "none"
, whereby the latter enables silent swallowing of such arguments.
option("collapse_DT_alloccol")
sets how many empty columns collapse data manipulation functions like ftransform
allocate when taking a shallow copy of data.table's. The default is 100L
. Note that the data.table default is getOption("datatable.alloccol") = 1024L
.