A function call of the form data.table::fread(file = file_path, nrow = 0L) results in the entire file being read. In my opinion, the behavior should be the same as when the call is data.table::fread(file = file_path, nrow = 0), since specifying the length as an integer is not uncommon.
A function call of the form
data.table::fread(file = file_path, nrow = 0L)results in the entire file being read. In my opinion, the behavior should be the same as when the call isdata.table::fread(file = file_path, nrow = 0), since specifying the length as an integer is not uncommon.