Better get()
better_get(x, pos = -1L, mode = "any", inherits = TRUE, ...)
pos, mode, inherits | arguments passed to |
---|---|
... | additional arguments are passed to |
character | string with an R object name, with or without an R package prefix. Note that only one value is recognized. |
the R object found. If not object is found an error results.
#> function (x, pos = -1L, envir = as.environment(pos), mode = "any", #> inherits = TRUE) #> .Internal(get(x, envir, mode, inherits)) #> <bytecode: 0x7fd202e1da58> #> <environment: namespace:base>better_get("base::get")#> function (x, pos = -1L, envir = as.environment(pos), mode = "any", #> inherits = TRUE) #> .Internal(get(x, envir, mode, inherits)) #> <bytecode: 0x7fd202e1da58> #> <environment: namespace:base>