示例#1
0
def binary_map(context, a, b, out):
    if out is not None:
        return out

    return promote(context, a, b)
示例#2
0
def binary_map(context, a, b, out):
    if out is not None:
        return out

    return promote(context, a, b)
示例#3
0
文件: numpyufuncs.py 项目: ASPP/numba
def binary_map(typesystem, a, b, out):
    if out is not None:
        return out

    return promote(typesystem, a, b)