The R Project SVN R

Rev

Rev 59039 | Go to most recent revision | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 59039 Rev 61150
Line 19... Line 19...
19
    two or more places on the \code{\link{search}} path, usually because
19
    two or more places on the \code{\link{search}} path, usually because
20
    an object in the user's workspace or a package is masking a system
20
    an object in the user's workspace or a package is masking a system
21
    object of the same name.  This helps discover unintentional masking.
21
    object of the same name.  This helps discover unintentional masking.
22
}
22
}
23
\value{
23
\value{
24
    If \code{detail=FALSE}, a character vector of masked objects.
24
    If \code{detail = FALSE}, a character vector of masked objects.
25
    If \code{detail=TRUE}, a list of character vectors giving the masked or
25
    If \code{detail = TRUE}, a list of character vectors giving the masked or
26
    masking objects in that member of the search path.  Empty vectors are
26
    masking objects in that member of the search path.  Empty vectors are
27
    omitted.
27
    omitted.
28
}
28
}
29
\examples{
29
\examples{
30
lm <- 1:3
30
lm <- 1:3
Line 35... Line 35...
35
#
35
#
36
# $package:base
36
# $package:base
37
# [1] "lm"
37
# [1] "lm"
38
 
38
 
39
## Remove things from your "workspace" that mask others:
39
## Remove things from your "workspace" that mask others:
40
remove(list = conflicts(detail=TRUE)$.GlobalEnv)
40
remove(list = conflicts(detail = TRUE)$.GlobalEnv)
41
}
41
}
42
\keyword{utilities}
42
\keyword{utilities}