@eagleoutice/flowr - v2.13.14
    Preparing search index...
    LogicalOps: {
        "&": {
            apply: (a: boolean, b: boolean) => boolean;
            decidedBy: undefined;
        };
        "&&": { apply: (a: boolean, b: boolean) => boolean; decidedBy: false };
        "|": { apply: (a: boolean, b: boolean) => boolean; decidedBy: undefined };
        "||": { apply: (a: boolean, b: boolean) => boolean; decidedBy: true };
    } = ...

    decidedBy is the lhs that fixes the result of the short-circuiting &&/|| on its own; &/| vectorize, so they need both sides

    Type Declaration

    • Readonly&: { apply: (a: boolean, b: boolean) => boolean; decidedBy: undefined }
    • Readonly&&: { apply: (a: boolean, b: boolean) => boolean; decidedBy: false }
    • Readonly|: { apply: (a: boolean, b: boolean) => boolean; decidedBy: undefined }
    • Readonly||: { apply: (a: boolean, b: boolean) => boolean; decidedBy: true }