Rev 25543 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
\name{ns-dblcolon}\title{Double Colon and Triple Colon Operators}\alias{::}\alias{:::}\description{Accessing exported and internal variables in a name space.}\usage{pkg::namepkg:::name}\arguments{\item{pkg}{package name symbol or literal character string.}\item{name}{variable name symbol or literal character string.}}\details{The expression \code{pkg::name} returns the value of the exportedvariable \code{name} in package \code{pkg} if the package has a namespace. The expression \code{pkg:::name} returns the value of theinternal variable \code{name} in package \code{pkg} if the package hasa name space. The package will be loaded if it was not loaded alreadybefore the call. Assignment into name spaces is not supported.}\examples{base::logbase::"+"}\keyword{programming}