nitc :: MMethod :: is_null_safe
Currently, only ==, != and is_same_instance are safe
==
!=
is_same_instance
# A specific method that is safe to call on null. # Currently, only `==`, `!=` and `is_same_instance` are safe fun is_null_safe: Bool do return name == "==" or name == "!=" or name == "is_same_instance"