Quick - ?
- Ternary If
Characters: ?
Tags: boolean
Arity: same
The resulting link's arity is the same as the consumed link's arity. Note that the arity refers to that of the resulting link, not the number of links this quick consumes.
Functionality
Ternary If; call a link depending on the result of a conditional. The resulting link's arity is the maximum of its consumed links' arities.
Syntax
<if-link><else-link><condition>?
- if the result of calling<condition>
is truthy, call<if-link>
; otherwise, call<else-link>