Null object: Difference between revisions

Content added Content deleted
Line 906: Line 906:
Null can be compared for directly, using equality operators, or can be checked with the isNull() function. Database operators (ending with ? mark) propagate null. A null in an expression test is a non-truthy result.
Null can be compared for directly, using equality operators, or can be checked with the isNull() function. Database operators (ending with ? mark) propagate null. A null in an expression test is a non-truthy result.


<lang langur>var (.x, .y) = (true, null)
<lang langur>val (.x, .y) = (true, null)


writeln .x == null
writeln .x == null