2.7. if then else

The expression if Ec then Et else Ef is a conditional expression. It executes as follows:

2.7.1. Syntax

[15]Conditional::= if Expression then Expression else Expression  

2.7.2. Type

The type of if Ec then Et else Ef is the join of the types of Et and Ef. Additionally, Ec must have type Boolean.

2.7.3. Examples

+Binary Search in a Sorted Array

2.7.4. Related Links

Related Reference Topics