The R Project SVN R

Rev

Rev 71366 | Details | Compare with Previous | 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{
88585 hornik 28
  \bibshow{R:Chambers:2016}
29
  (Chapters 9 and 10.)
71366 jmc 30
}
31
 
32
 
33
\keyword{programming}
34
\keyword{classes}
35
\keyword{methods}