The R Project SVN R

Rev

Go to most recent revision | Details | Last modification | View Log | RSS feed

Rev Author Line No. Line
71366 jmc 1
% File src/library/methods/man/setMethod.Rd
2
% Part of the R package, https://www.R-project.org
3
% Copyright 1995-2007 R Core Team
4
% Distributed under GPL 2 or later
5
 
6
\name{removeMethod}
7
\alias{removeMethod}
8
\title{ Remove a Method }
9
\description{
10
  Remove the method for a given function and signature.  Obsolete for
11
  ordinary applications: Method definitions in a package should never
12
  need to remove methods and it's very bad practice to remove methods
13
  that were defined in other packages.
14
}
15
\usage{
16
removeMethod(f, signature, where)
17
}
18
\arguments{
19
  \item{f, signature, where}{  As for \code{\link{setMethod}()}.
20
}
21
}
22
\value{
23
   \code{TRUE} if a method
24
  was found to be removed.
25
}
26
 
27
\references{
28
 Chambers, John M. (2016)
29
 \emph{Extending R},
30
  Chapman & Hall.
31
(Chapters 9 and 10.)
32
}
33
 
34
 
35
\keyword{programming}
36
\keyword{classes}
37
\keyword{methods}