This help topic is for R version 2.9.0. For the current version of R, try https://stat.ethz.ch/R-manual/R-patched/library/utils/html/getS3method.html
getS3method {utils}R Documentation

Get An S3 Method

Description

Get a method for an S3 generic, possibly from a name space.

Usage

getS3method(f, class, optional = FALSE)

Arguments

f

character: name of the generic.

class

character: name of the class.

optional

logical: should failure to find the generic or a method be allowed?

Details

S3 methods may be hidden in packages with name spaces, and will not then be found by get: this function can retrieve such functions, primarily for debugging purposes.

Value

The function found, or NULL if no function is found and optional = TRUE.

See Also

methods, get

Examples

require(stats)
exists("predict.ppr") # false
getS3method("predict", "ppr")

[Package utils version 2.9.0 ]