AutoBE
    Preparing search index...

    Ternary selection: predicate ? whenTrue : whenFalse.

    interface ITernaryExpression {
        kind: "ternary";
        predicate: IPredicate;
        whenFalse: IValueExpression;
        whenTrue: IValueExpression;
    }
    Index

    Properties

    kind: "ternary"
    predicate: IPredicate
    whenFalse: IValueExpression