Methods

!==ΒΆ

!==(a:Any, b:Any)

Non-sameness operator
Source: stdlib.ngs:772

Example

h1 = {"a": 1}
h2 = {"a": 1}
h1 !== h2  # true, same as not(h1===h2)
h1 == h2   # true