Description
The return value is the value returned by
y or
z, as the case may be.
The clause '
then y' may be omitted, in which case the return value is the value returned by
x, if there is no error or alarm.
The clause '
else z' may be omitted, in which case the return value is the value returned by
y, unless an error or alarm occurs, in which case
null is returned.
The clauses '
then y else z' may both be omitted, in which case the return value is the value returned by
x, unless an error or alarm occurs, in which case
null is returned.
The behavior of interrupts (other than alarms) is unaffected.
i1 : apply(-3..3,i->try 1/i else infinity)
1 1 1 1
o1 = (- -, - -, -1, infinity, 1, -, -)
3 2 2 3
o1 : Sequence
|