The R Project SVN R

Rev

Rev 88581 | Show entire file | Ignore whitespace | Details | Blame | Last modification | View Log | RSS feed

Rev 88581 Rev 88890
Line 57... Line 57...
57
  \code{\link{Arithmetic}}, \code{\link{Comparison}}, \code{\link{Control}},
57
  \code{\link{Arithmetic}}, \code{\link{Comparison}}, \code{\link{Control}},
58
  \code{\link{Extract}}, \code{\link{Logic}},
58
  \code{\link{Extract}}, \code{\link{Logic}},
59
  \code{\link{NumericConstants}}, \code{\link{Paren}},
59
  \code{\link{NumericConstants}}, \code{\link{Paren}},
60
  \code{\link{Quotes}}, \code{\link{Reserved}}.
60
  \code{\link{Quotes}}, \code{\link{Reserved}}.
61
 
61
 
62
  The \sQuote{R Language Definition} manual.
62
  Section \manual{R-lang}{Expressions}.
63
}
63
}
64
\examples{
64
\examples{
65
## Logical AND ("&&") has higher precedence than OR ("||"):
65
## Logical AND ("&&") has higher precedence than OR ("||"):
66
TRUE || TRUE && FALSE   # is the same as
66
TRUE || TRUE && FALSE   # is the same as
67
TRUE || (TRUE && FALSE) # and different from
67
TRUE || (TRUE && FALSE) # and different from