backports (version 1.1.4)

get0: Backport of get0 for R < 3.2.0

Description

See the original description in base::get0.

Usage

get0(x, envir = pos.to.env(-1L), mode = "any", inherits = TRUE,
  ifnotfound = NULL)

Arguments

Examples

Run this code
# NOT RUN {
# get function from namespace instead of possibly getting
# implementation shipped with recent R versions:
bp_get0 = getFromNamespace("get0", "backports")

bp_get0("a")
bp_get0("a", ifnotfound = 0)

foo = 12
bp_get0("foo")
# }

Run the code above in your browser using DataCamp Workspace