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

    A self-contained package. A versions[ver] entry is a delta-encoded ascending list of indices into PkgBlob.fns (cumulative-sum to decode); its long runs of 1 just mean a version's functions sit in consecutive pool slots, which brotli collapses on disk. See PkgBlobTuple for the on-disk order.

    interface PkgBlob {
        cgs: number[][];
        dates: Record<string, number>;
        deps: SigDep[][];
        depsByVersion: Record<string, number>;
        fns: SigFn[];
        noncran?: string[];
        sigs: Sig[];
        versions: Record<string, number[]>;
    }
    Index

    Properties

    cgs: number[][]
    dates: Record<string, number>

    version name to its release date as days since the Unix epoch (absent when the date is unknown)

    deps: SigDep[][]

    pool of unique dependency lists (shared across a package's versions)

    depsByVersion: Record<string, number>

    version name to an index into PkgBlob.deps (absent when the version declares no dependencies)

    fns: SigFn[]
    noncran?: string[]

    the subset of PkgBlob.versions that are not from CRAN (usually empty, so left undefined in memory)

    sigs: Sig[]
    versions: Record<string, number[]>

    version name to a delta-encoded ascending list of indices into PkgBlob.fns