move: Rename an R object

View source: R/move.R

moveR Documentation

Rename an R object

Description

Rename object from into to.

Usage

move(from, to)
mv(from, to)

Arguments

from

an R object name

to

the new R object name

Value

none.

Author(s)

J.R. Lobry

References

citation("seqinr")

See Also

swap

Examples

#
# Example in a new empty environment:
#
local({
  zefplock <- pi
  print(ls())
  print(zefplock)
  mv(zefplock, toto)
  print(ls())
  print(toto)
  stopifnot(identical(toto, pi)) # Sanity check
})
#
# Check that self-affectation is possible:
#
mv(mv, mv) # force self-affectation for the function itself
mv(mv, mv) # OK, function mv() still exists

seqinr documentation built on March 31, 2023, 3:05 p.m.