isS3stdGeneric
Identify S3 Generic Function

Description

Tell if a function is not much more than a call to UseMethod().

Usage

isS3stdGeneric(f)

Arguments

f a function or a character string naming a function on the search list.
Value
See Also
UseMethod.
Examples
isS3stdGeneric(function(x, y) { UseMethod("myGeneric", y) })
isS3stdGeneric(stats::model.frame)
isS3stdGeneric(function(x) x + 1)
Package utils version 6.0.0-69
Package Index