findS3Meth: Find S3 Methods That Apply to an Object

View source: R/findS3Meth.R

findS3MethR Documentation

Find S3 Methods That Apply to an Object

Description

Adapted from Josh O'Brien's idea at https://stackoverflow.com/questions/23840404/function-to-return-all-s3-methods-applicable-to-an-object

Usage

findS3Meth(object)

Arguments

object

An R object.

Value

A vector of applicable methods.

Examples

data(ToothGrowth)
tst1 <- findS3Meth(ToothGrowth); tst1
tst2 <- findS3Meth(ToothGrowth$supp); tst2

bryanhanson/HandyStuff documentation built on July 22, 2022, 6:18 a.m.