Makes sure that the objects are exported to slave process so
that they can be used in a job function which is later run with
parallelMap().
     
    parallelExport(
  ...,
  objnames,
  master = TRUE,
  level = NA_character_,
  show.info = NA
)
    Arguments
    
    
    
      | ... | characterNames of objects to export.
 | 
    
      | objnames | (character(1))Names of objects to export.
Alternative way to pass arguments.
 | 
    
      | master | (logical(1))Really export to package environment on master for local and multicore
mode? If you do not do this your objects might not get exported for the
mapping function call. Only disable when you are really sure. Default is
 TRUE. | 
    
      | level | (character(1))If a (non-missing) level is specified in
 parallelStart(),
the function only exports if the level specified here matches.
SeeparallelMap().
Useful if this function is used in a package.
Default isNA. | 
    
      | show.info | (logical(1))Verbose output on console?
Can be used to override setting from options /
 parallelStart().
Default is NA which means no overriding. | 
    
    Value
    Nothing.