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

    the detailed view of a single function within a package

    interface SignatureFunctionView {
        callees: readonly string[];
        callGraph?: string;
        docUrl?: string;
        exported: boolean;
        file?: string;
        line?: number;
        name: string;
        package: string;
        parameters: readonly SignatureParameterView[];
        properties: readonly string[];
        s3generic?: boolean;
        s3method?: { class: string; generic: string; package: string };
        s3methods?: readonly string[];
        sourceUrl?: string;
        version?: string;
    }
    Index

    Properties

    callees: readonly string[]
    callGraph?: string

    a mermaid.live link visualizing the transitive call graph from this function (only when requested with --cg)

    docUrl?: string

    best-effort rdrr.io documentation link, when the function name maps to a documentable topic

    exported: boolean
    file?: string
    line?: number
    name: string
    package: string
    parameters: readonly SignatureParameterView[]
    properties: readonly string[]
    s3generic?: boolean

    whether the function looks like an S3 generic (has <generic>.<class> dispatch targets in the same package)

    s3method?: { class: string; generic: string; package: string }

    when the function is an S3 method, the generic it dispatches for (print.rema is print in base, class rema); lazily computed

    s3methods?: readonly string[]

    the <generic>.<class> dispatch targets found in the same package

    sourceUrl?: string

    deep link into the read-only CRAN GitHub mirror, when the definition location + a CRAN version are known

    version?: string