A version of the ternary operator "?:" is also present in Scriptic and in Subscript. These are two language extensions, relative to Java and Scala respectively, and based on the Algebra of Communicating Processes (ACP).
ACP is a comparable to boolean algebra, but it does not only come with truth values but also with things that "happen". ACP considers process expressions, built from atomic actions, special constants, refinements, operators and parentheses.
- Addition represents choice. It has a 0-like neutral operand δ, named Deadlock Process.
- Multiplication represents sequence. It has a 1-like neutral operand ε, named Empty Process.
The ternary operator x?y:z in Scriptic and in Subscript means:
do x and then y; in case x ends in deadlock do z
Formally:
Let x, y, v, w be process expressions
Let a be an atomic action.
Let failure(x) be a predicate (yielding δ or ε), that tells whether x is effectively equal to δ, and let ! be negation on δ and ε:
failure(x+y) = failure(x) · failure(y)
failure(a·x) = δ
failure(ε) = δ
failure(δ) = ε
!δ = ε
!ε = δ
Then the ternary operator is defined by
(x+y)?v:w = !failure(x )·(x?v:w)
+ !failure( y)·(y?v:w)
+ failure(x+y)·w
(a·x)?v:w = a·(x?v:w)
δ?v:w = v
ε?v:w = w