Rev 51163 | Blame | Compare with Previous | Last modification | View Log | Download | RSS feed
% File src/library/base/man/Syntax.Rd% Part of the R package, http://www.R-project.org% Copyright 1995-2007 R Core Development Team% Distributed under GPL 2 or later\name{Syntax}\alias{Syntax}\title{Operator Syntax and Precedence}\description{Outlines \R syntax and gives the precedence of operators}\details{The following unary and binary operators are defined. They are listedin precedence groups, from highest to lowest.\tabular{ll}{\code{:: :::}\tab access variables in a name space\cr\code{$ @}\tab component / slot extraction\cr\code{[ [[}\tab indexing\cr\code{^}\tab exponentiation (right to left)\cr\code{- +}\tab unary minus and plus\cr\code{:}\tab sequence operator\cr\code{\%any\%}\tab special operators\cr\code{* /}\tab multiply, divide\cr\code{+ -}\tab (binary) add, subtract\cr\code{< > <= >= == !=}\tab ordering and comparison\cr\code{!}\tab negation\cr\code{& &&}\tab and\cr\code{| ||}\tab or\cr\code{~}\tab as in formulae\cr\code{-> ->>}\tab rightwards assignment\cr\code{=}\tab assignment (right to left)\cr\code{<- <<-}\tab assignment (right to left)\cr\code{?}\tab help (unary and binary)\cr}Within an expression operators of equal precedence are evaluatedfrom left to right except where indicated.The binary operators \code{::}, \code{:::}, \code{$} and \code{@} requirenames or string constants on the right hand side, and the first twoalso require them on the left.The links in the \bold{See Also} section cover most other aspects ofthe basic syntax.}\note{There are substantial precedence differences between \R and S. Inparticular, in S \code{?} has the same precedence as (binary) \code{+ -}and \code{& && | ||} have equal precedence.}\references{Becker, R. A., Chambers, J. M. and Wilks, A. R. (1988)\emph{The New S Language}.Wadsworth & Brooks/Cole.}\seealso{\code{\link{Arithmetic}}, \code{\link{Comparison}}, \code{\link{Control}},\code{\link{Extract}}, \code{\link{Logic}},\code{\link{NumericConstants}}, \code{\link{Paren}},\code{\link{Quotes}}, \code{\link{Reserved}}.The \emph{R Language Definition} manual.}\keyword{documentation}\keyword{programming}