@eagleoutice/flowr - v2.15.8
    Preparing search index...
    interface NamespaceInfo {
        callable: string[];
        conditional?: Map<RNode<ParentInformation>, NamespaceInfo>;
        exportedFunctions: string[];
        exportedPatterns: string[];
        exportedS4Classes: string[];
        exportedS4Methods: string[];
        exportedSymbols: string[];
        exportS3Generics: Map<string, string[]>;
        importedPackages: Map<string, string[] | "all">;
        loadsWithSideEffects: boolean;
    }
    Index
    callable: string[]

    Present only in complex parsed NAMESPACE files. Maps conditions to the parts they gate.

    exportedFunctions: string[]
    exportedPatterns: string[]
    exportedS4Classes: string[]

    Classes listed by exportClasses(): the S4 classes the package owns. Separated like exportedS4Methods.

    exportedS4Methods: string[]

    Names listed by exportMethods(): S4 methods the package registered for one of its classes, which is a different claim than an ordinary export (the package answers a generic, it does not define the function). Only the context-parsed path (parseNamespaceComplex) tells these apart; the regex fallback folds them into exportedFunctions.

    exportedSymbols: string[]
    exportS3Generics: Map<string, string[]>
    importedPackages: Map<string, string[] | "all">
    loadsWithSideEffects: boolean