AutoBE
    Preparing search index...

    Interface AutoBeRealizeConditionalExpression

    Ternary selection: condition ? whenTrue : whenFalse.

    For inline value choices driven by a business condition. Both branches are evaluated lazily as in the source language's ternary operator.

    interface AutoBeRealizeConditionalExpression {
        condition: AutoBeRealizeExpression;
        type: "conditional";
        whenFalse: AutoBeRealizeExpression;
        whenTrue: AutoBeRealizeExpression;
    }
    Index

    Properties

    Boolean expression selecting a branch.

    type: "conditional"

    Type discriminator.

    Value when condition is false.

    Value when condition is true.