@eagleoutice/flowr - v2.15.8
    Preparing search index...
    interface FunctionInfo {
        inferredType?: string;
        isExported: boolean;
        isS3Generic: boolean;
        isS4Class?: boolean;
        isS4Method?: boolean;
        name: string;
        packageOrigin: string;
        s3TypeDispatch?: string;
    }
    Index
    inferredType?: string
    isExported: boolean
    isS3Generic: boolean
    isS4Class?: boolean

    The name is an S4 class the package owns, i.e. its NAMESPACE lists it in exportClasses().

    isS4Method?: boolean

    The name is an S4 method the package registered (its NAMESPACE exportMethods()): it is exported because the package answers a generic for one of its classes, not because it defines a function of its own. The S4 counterpart of isS3Generic/s3TypeDispatch.

    name: string
    packageOrigin: string
    s3TypeDispatch?: string