Rev 39736 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{invisible}\alias{invisible}\title{Change the Print Mode to Invisible}\description{Return a (temporarily) invisible copy of an object.}\usage{invisible(x)}\arguments{\item{x}{an arbitrary \R object.}}\details{This function can be useful when it is desired to have functionsreturn values which can be assigned, but which do not print when theyare not assigned.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth \& Brooks/Cole.}\seealso{\code{\link{withVisible}},\code{\link{return}},\code{\link{function}}.}\examples{# These functions both return their argumentf1 <- function(x) xf2 <- function(x) invisible(x)f1(1)# printsf2(1)# does not}\keyword{programming}