Esempio n. 1
0
def eq_default(a, b):
    # This strongly enforces the null and boolean identity.
    # You can't mess it up by multimethod introductions.
    if a == null or b == null:
        return boolean(a == b)
    elif isinstance(a, Boolean) or isinstance(b, Boolean):
        return boolean(a == b)
    # This reflects how the cmp_ operates, with an exception that
    # if cmp cannot succeed, we will use the identity equality.
    args = [a, b]
    method = cmp_.fetch_method(args, True)
    if method is None:
        c = coerce.fetch_method(args, False)
        if c is not None:
            args = cast(c.call(args), List,
                        u"coerce should return a list").contents
            method = cmp_.fetch_method(args, True)
    if method is not None:
        return boolean(
            cast(method.call(args), Integer, u"cmp should return an int").value
            == 0)
    else:
        # This way, the equality and inequality is always defined,
        # even if comparison is not defined for everything.
        return boolean(a == b)
Esempio n. 2
0
def ge_default(a, b):
    args = [a, b]
    method = cmp_.fetch_method(args, True)
    if method is not None:
        return boolean(
            cast(method.call(args), Integer, u"cmp should return int").value >=
            0)
    else:
        args = cast(coerce.call(args), List, u"coerce should return a list")
        return ge.call_suppressed(args.contents)
Esempio n. 3
0
def _(a, b):
    return boolean(a.value == b.value)
Esempio n. 4
0
def ne_default(a, b):
    return boolean(is_false(eq.call([a, b])))
Esempio n. 5
0
def cmp_le(a, b):
    return boolean(a.number <= b.number)
Esempio n. 6
0
def cmp_lt(a, b):
    return boolean(a.number < b.number)
Esempio n. 7
0
def cmp_le(a, b):
    return boolean(a.value <= b.value)
Esempio n. 8
0
def _(a, b):
    return boolean(a.string == b.string)
Esempio n. 9
0
def cmp_le(a, b):
    return boolean(a.number <= b.number)
Esempio n. 10
0
def cmp_gt(a, b):
    return boolean(a.number > b.number)
Esempio n. 11
0
def cmp_lt(a, b):
    return boolean(a.number < b.number)
Esempio n. 12
0
def cmp_ge(a, b):
    return boolean(a.value >= b.value)
Esempio n. 13
0
def cmp_le(a, b):
    return boolean(a.value <= b.value)
Esempio n. 14
0
def cmp_gt(a, b):
    return boolean(a.value > b.value)
Esempio n. 15
0
def cmp_lt(a, b):
    return boolean(a.value < b.value)
Esempio n. 16
0
def _(a, b):
    return boolean(a.number == b.value)
Esempio n. 17
0
def _(a, b):
    return boolean(a.ref == b.ref)
Esempio n. 18
0
def cmp_ge(a, b):
    return boolean(a.number >= b.number)
Esempio n. 19
0
def cmp_gt(a, b):
    return boolean(a.value > b.value)
Esempio n. 20
0
def ne_default(a, b):
    return boolean(a != b)
Esempio n. 21
0
def cmp_ge(a, b):
    return boolean(a.value >= b.value)
Esempio n. 22
0
def eq_default(a, b):
    return boolean(a == b)
Esempio n. 23
0
def cmp_gt(a, b):
    return boolean(a.number > b.number)
Esempio n. 24
0
def _(a, b):
    return boolean(a.value == b.value)
Esempio n. 25
0
def cmp_ge(a, b):
    return boolean(a.number >= b.number)
Esempio n. 26
0
def _(a, b):
    return boolean(a.number == b.number)
Esempio n. 27
0
def _(a, b):
    return boolean(a.number != b.number)
Esempio n. 28
0
def _(a, b):
    return boolean(a.eq(b))
Esempio n. 29
0
def ne_default(a, b):
    return boolean(a != b)
Esempio n. 30
0
def eq_default(a, b):
    return boolean(a == b)
Esempio n. 31
0
def _(a, b):
    return boolean(a.value == b.number)
Esempio n. 32
0
def _(a, b):
    return boolean(a.eq(b))
Esempio n. 33
0
def _(a, b):
    return boolean(a.string == b.string)
Esempio n. 34
0
def cmp_lt(a, b):
    return boolean(a.value < b.value)
Esempio n. 35
0
def cmp_eq(a, b):
    return boolean(a.eq(b))
Esempio n. 36
0
def ne_default(a, b):
    return boolean(is_false(eq.call([a, b])))