Turn
You can turn an optional none value to an optional any value, and vice-versa, with the turn ~ operator.
- Turning a
pairwill turn both its key and value - Turning a
structwill turn anopenstruct into aclosedstruct and vice-versa (because of the special optionalpair) - Turning a
listorsequencewill turn each of their elements - Turning a
number,booleanornullvalue will yield the same value
T1:
T2:
T3:
T4:
T5:
T6:
T7:
T8:
T9:
T10: