1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20
|
% Generated by roxygen2: do not edit by hand
% Please edit documentation in R/vname.R
\name{vname}
\alias{vname}
\title{Lookup a variable name}
\usage{
vname(x)
}
\arguments{
\item{x}{[ANY]\cr
Object.}
}
\value{
[\code{character(1)}] Variable name.
}
\description{
Tries to heuristically determine the variable name of \code{x} in the parent frame
with a combination of \code{\link[base]{deparse}} and \code{\link[base]{substitute}}.
Used for checkmate's error messages.
}
|