is.s3.generic | R Documentation |
This function roughly test a function is generic.
is.s3.generic(fun.name)
is.s4.generic(fun.name, package = "")
is.generic(fun.name, package = "")
fun.name |
a character string naming the function. |
package |
a character string of package name. |
returns TRUE if fun.name is generic function and FALSE otherwise.
is.s3.generic()
: (Internal) function for S3 generic function.
is.s4.generic()
: (Internal) function for S4 generic function.
model.adapter:::is.s3.generic("plot")
model.adapter:::is.s3.generic("glm")
model.adapter:::is.s4.generic("plot")
model.adapter:::is.s4.generic("lmer")
model.adapter:::is.generic("plot")
model.adapter:::is.generic("glm")
Add the following code to your website.
For more information on customizing the embed code, read Embedding Snippets.