Esempio n. 1
0
 /// <summary>
 /// Implements the binary `!==` operator.
 /// </summary>
 public static bool notSame(BoxedValue l, BoxedValue r)
 {
     return(!Operators.same(l, r));
 }
Esempio n. 2
0
 /// <summary>
 /// Implements the binary `!=` operator.
 /// </summary>
 public static bool notEq(BoxedValue l, BoxedValue r)
 {
     return(!Operators.eq(l, r));
 }