| S3method | R Documentation |
Register S3 methods in R scripts.
.S3method(generic, class, method)
generic | a character string naming an S3 generic function. |
class | a character string naming an S3 class. |
method | a character string or function giving the S3 method tobe registered. If not given, the function named |
This function should only be used in R scripts: for package code, oneshould use the correspondingS3method ‘NAMESPACE’ directive.
## Create a generic function and register a method for objects## inheriting from class 'cls':gen <- function(x) UseMethod("gen")met <- function(x) writeLines("Hello world.").S3method("gen", "cls", met)## Create an object inheriting from class 'cls', and call the## generic on it:x <- structure(123, class = "cls")gen(x)Add the following code to your website.
For more information on customizing the embed code, readEmbedding Snippets.
