Methods

is notΒΆ

is not(a:Any, b:Any)

"is not" operator. Exactly same as "not(a is b)".
Source: stdlib.ngs:792

Example

1    is not Null  # true
null is not Null  # false