Some functions (e.g., getJobPars, getJobResources or reduceResultsDataTable
return a data.table with columns of type list.
These columns can be unnested/unwrapped with this function.
The contents of these columns will be transformed to a data.table and cbind-ed
to the input data.frame x, replacing the original nested column.
[character]
Columns to consider for this operation. If set to NULL (default),
will operate on all columns of type “list”.
sep
[character(1)]
If NULL (default), the column names of the additional columns will re-use the names
of the nested list/data.frame.
This may lead to name clashes.
If you provide sep, the variable column name will be constructed as
“[column name of x][sep][inner name]”.