showMethods {methods} | R Documentation |
Show a summary of the methods for one or more generic functions, possibly restricted to those involving specified classes.
showMethods(f=character(), where=-1, classes=NULL, includeDefs=FALSE,
inherited=TRUE, printTo = stdout())
f |
One or more function names. If omitted, all functions will be examined. |
where |
If |
classes |
If argument |
includeDefs |
If |
inherited |
If |
printTo |
The connection on which the printed information will be
written. If |
The output style is different from S-Plus in that it does not show the database from which the definition comes, but can optionally include the method definitions.
If printTo
is FALSE
, the character vector that would
have been printed is returned; otherwise the value is the connection
or filename.
John Chambers
The web page http://www.omegahat.org/RSMethods/index.html is the primary documentation.
The functions in this package emulate the facility for classes and methods described in Programming with Data (John M. Chambers, Springer, 1998). See this book for further details and examples.
setMethod
, and GenericFunctions
for other tools involving methods;
show
## assuming the methods for plot
## are set up as in the documentation for setMethod,
## print (without definitions) the methods that involve
## class "track"
showMethods("plot", classes = "track")
## Not run:
Function "plot":
x = ANY, y = track
x = track, y = missing
x = track, y = ANY
## End(Not run)