inlinedocs (version 2019.12.5)

leadingS3generic: check whether function name is an S3 generic

Description

Determines whether a function name looks like an S3 generic function

Usage

leadingS3generic(name, 
    env, ...)

Arguments

name

name of function

env

environment to search for additional generics

ignored here

Value

If a matching generic found returns a list with a single component:

.s3method

a character vector containing generic name and object name.

If no matching generic functions are found, returns an empty list.

Details

This function is one of the default parsers, but exposed as possibly of more general interest. Given a function name of the form x.y.z it looks for the generic function x applying to objects of class y.z and also for generic function x.y applying to objects of class z.

Assumes that the first name which matches any known generics is the target generic function, so if both x and x.y are generic functions, will assume generic x applying to objects of class y.z