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