This page explains how APL represents missing values.
==
): Applying the equality operator to two null values yields bool(null)
. Applying the equality operator to a null value and a non-null value yields bool(false)
.!=
): Applying the inequality operator to two null values yields bool(null)
. Applying the inequality operator to a null value and a non-null value yields bool(true)
.