@eagleoutice/flowr - v2.13.14
    Preparing search index...

    Interface SigDbBaseCounts

    What the entries of the base-R bundle carry, counted by walking its function records once. Only that one bundle is walked, it is the part every install ships and the only one small enough to read without unpacking megabytes (see SigDbCounts).

    interface SigDbBaseCounts {
        functions: number;
        functionsCarrying: Record<string, number>;
        parameters: number;
    }
    Index
    functions: number

    unique function records in the bundle's pool (a record shared by several versions counts once)

    functionsCarrying: Record<string, number>

    how many of the records carry each piece of information: a parameter list, a call graph, a source location, a help topic, and one entry per function property flag the format defines

    parameters: number

    total number of parameters over all of those records