import
import copied to clipboard
An Import Mechanism For R
I'm getting the following error when running `import::from()` from the debugger after loading a personal package. ```R import::from("purrr", "map", .into = "explictpackage:purrr", .character_only = TRUE) #> Error in as.environment(where) :...
## Targeted issues As of September 2023, `v1.3.1` has been released, with all items originally targeted for that. User visible features targeted for `v1.4.0` now only include #63, (config function),...
Assuming 'lib' is a directory that is not defined in the `.libPaths()`, and package `foo` exists in 'lib', and function `bar` exists in foo, I expect: ```r import::from(foo, bar, .library='lib')...
The new default branch on GitHub is now `main` and there are a number of good reasons to use that name. And now seems like a pretty good time to...
As the number of dot-prefixed parameters to `import::from()` has increased considerably, I have been thinking that an `import::config()` function might be a good addition to the package. The formals (the...
This does not work to simultaneously load the same function, `foo`, from two different releases. Instead of getting the two different versions the same version is retrieved twice. https://gist.github.com/DavZim/9b5e1705c726346f5a50cdec1f61509f The...