!== multimethod

Methods

!==(a:Any, b:Any) Source: stdlib.ngs:25
Non-sameness operator

Example

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