isGenericS3: Checks if a function is a S3 generic function
Description
Checks if a function is a S3 generic function.Usage
## S3 method for class 'default':
isGenericS3(fcn, envir=parent.frame(), ...)
Value
- Returns
TRUE if a generic S3/UseMethod function, otherwise FALSE.
Details
A function is considered to be a generic S3/UseMethod function if
its name matches one of the known S3 generic functions, or if it
calls UseMethod().