You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
the new vctrs package provides efficient implementations of complex type vectors and would solve several issues with S3 method dispatch for different types of iso files objects (e.g. continuous flow vs. dual inlet).
the caveat is that individual iso_file objects are not as easily clearly defined to stay compatible with different file format imports.
gotta think this through carefully whether it makes sense
The text was updated successfully, but these errors were encountered:
I think it would be best if you have a length-0 iso_files list, it should return the tibble with all the desired columns of the correct type. I'm not sure if this is right, but for one of my functions I'm now considering:
# part of the `get_inits()` function, function should always return below data structure?
if (nrow(.did) == 0L) {
return(
tibble(file_id = character(), Analysis = character(),
s44_init = double(), r44_init = double())
)
}
but it seems like vctrs might do this kind of housekeeping in a better way?
the new vctrs package provides efficient implementations of complex type vectors and would solve several issues with S3 method dispatch for different types of iso files objects (e.g. continuous flow vs. dual inlet).
the caveat is that individual iso_file objects are not as easily clearly defined to stay compatible with different file format imports.
gotta think this through carefully whether it makes sense
The text was updated successfully, but these errors were encountered: