We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Instead of using the options() to store multiloadr, should we create R6 class instead?
options()
x <- multiloadr$new() # methods x$add_pkgs() x$list_pkgs() x$load_pkgs() # constructor multiloadr_obj <- create_multiloadr(path, pkg_name, branch_name, from_commit) # return multiloadr object add_pkgs(multiloadr_obj, path, pkg_name, branch_name, from_commit) list_pkgs(multiloadr_obj) load_pkgs(multiloadr_obj)
The text was updated successfully, but these errors were encountered:
Totally. I do not like the fact that we're storing the data about the package and paths as options. R6 will make it well isolated.
Sorry, something went wrong.
env
donyunardi
No branches or pull requests
Instead of using the
options()
to store multiloadr, should we create R6 class instead?The text was updated successfully, but these errors were encountered: