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

    A FnSig in the form the call processors use it, see sigLayout.

    interface SigLayout {
        alias: number;
        any: number;
        props: readonly number[];
        rest: number;
    }
    Index
    alias: number

    the position of the ArgProp.Alias argument, handed back as the result, -1 if there is none

    any: number

    every bit some parameter carries, so a call can skip the bits nobody uses

    props: readonly number[]

    the props of each declared parameter, in order

    rest: number

    the position of the ... parameter, -1 if there is none