unstash: Unstash an object

Description Usage Arguments Value Examples

View source: R/unstash.R

Description

Remove an object from the stash.

Usage

1
unstash(var, verbose = TRUE)

Arguments

var

The name or a vector of names of objects to remove.

verbose

Whether to print action statements (default TRUE).

Value

Returns NULL (invisibly).

Examples

1
2
3
4
5
6
7
8
stash("x", {
  x <- 1
})

unstash("x")

#' # Remove directory for this example - do not do in real use.
unlink(".mustashe", recursive = TRUE)

mustashe documentation built on May 17, 2021, 1:09 a.m.