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

    The entry of a CallSemanticsDefinition mapping a function name to the semantics to apply for calls of that function.

    interface CallSemanticsEntry<
        Domain extends StateDomain,
        Key extends keyof CallSemantics<Domain> = keyof CallSemantics<Domain>,
    > {
        applier: CallSemanticsApplier<CallSemantics<Domain>[Key]>;
        identifier: Identifier | "other";
    }

    Type Parameters

    Index
    identifier: Identifier | "other"