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

    how a single function of a package is used in the code

    interface FunctionUsage {
        at?: NodeId;
        calls: Map<string, readonly FunctionArgument[]>;
        named: Map<string, NodeId>;
    }
    Index
    at?: NodeId

    the first call of the function, absent when only a class use implies it

    calls: Map<string, readonly FunctionArgument[]>

    one representative argument list per distinct call shape (drives signature compatibility)

    named: Map<string, NodeId>

    per named argument used anywhere, the first call supplying it (drives the lower-bound evidence)