The R Project SVN R

Rev

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

Rev 88585 Rev 88589
Line 181... Line 181...
181
}
181
}
182
\references{
182
\references{
183
  \bibshow{R:Chambers:2016}
183
  \bibshow{R:Chambers:2016}
184
  (Chapters 9 and 10.)
184
  (Chapters 9 and 10.)
185
 
185
 
186
 Chambers, John M. (2008)
186
  \bibshow{R:Chambers:2008}
187
 \emph{Software for Data Analysis: Programming with R}
-
 
188
  Springer. (Section 10.6 for some details of method selection.)
187
  (Section 10.6 for some details of method selection.)
189
}
188
}
-
 
189
\seealso{
190
\seealso{\code{\link{Methods_Details}} for the details of method
190
  \code{\link{Methods_Details}} for the details of method selection;
191
  selection; \code{\link{GenericFunctions}} for other functions
191
  \code{\link{GenericFunctions}} for other functions manipulating
192
  manipulating methods and generic function objects;
192
  methods and generic function objects; 
193
  \code{\linkS4class{MethodDefinition}} for the class that represents
193
  \code{\linkS4class{MethodDefinition}} for the class that represents
194
  method definitions.}
194
  method definitions.
-
 
195
}
195
\examples{
196
\examples{
196
testFun <-  function(x)x
197
testFun <-  function(x)x
197
setGeneric("testFun")
198
setGeneric("testFun")
198
setMethod("testFun", "numeric", function(x)x+1)
199
setMethod("testFun", "numeric", function(x)x+1)
199
 
200