Mapytex/mapytex/calculus/core/operator.py

67 lines
1.7 KiB
Python
Raw Normal View History

2018-01-21 08:26:34 +00:00
#! /usr/bin/env python
# -*- coding: utf-8 -*-
# vim:fenc=utf-8
#
# Copyright © 2017 lafrite <lafrite@Poivre>
#
# Distributed under terms of the MIT license.
__all__ = ["OperatorError", "OPERATORS", "is_operator"]
2018-03-07 13:26:06 +00:00
class OperatorError(Exception):
pass
2018-01-21 08:26:34 +00:00
OPERATORS = {
2018-01-21 15:16:08 +00:00
"+": {'repr': "+",
2018-03-07 13:26:06 +00:00
'arity': 2,
2018-01-21 15:16:08 +00:00
'precedence': 0,
'operate': lambda x: x.__getattribute__("__add__"),
'roperate': lambda x: x.__getattribute__("__radd__"),
},
"-": {'repr': "-",
2018-03-07 13:26:06 +00:00
'arity': 1,
2018-01-21 15:16:08 +00:00
'precedence': 1,
2018-03-07 13:26:06 +00:00
'operate': lambda x: x.__getattribute__("__neg__"),
2018-01-21 15:16:08 +00:00
},
"*": {'repr': "*",
2018-03-07 13:26:06 +00:00
'arity': 2,
2018-01-21 15:16:08 +00:00
'precedence': 2,
'operate': lambda x: x.__getattribute__("__mul__"),
'roperate': lambda x: x.__getattribute__("__rmul__"),
},
"/": {'repr': "/",
2018-03-07 13:26:06 +00:00
'arity': 2,
2018-01-21 15:16:08 +00:00
'precedence': 3,
'operate': lambda x: x.__getattribute__("__div__"),
'roperate': lambda x: x.__getattribute__("__rdiv__"),
},
"^": {'repr': "^",
2018-03-07 13:26:06 +00:00
'arity': 2,
2018-01-21 15:16:08 +00:00
'precedence': 4,
'operate': lambda x: x.__getattribute__("__pow__"),
'roperate': lambda x: x.__getattribute__("__rpow__"),
},
2018-01-21 08:26:34 +00:00
}
2018-02-02 15:02:42 +00:00
def is_operator(string):
""" Return whether a string is an operator or not
:param string: string to test
:returns: boolean
:example:
>>> is_operator("+")
True
>>> is_operator("i")
False
"""
return string in OPERATORS.keys()
2018-01-21 08:26:34 +00:00
# -----------------------------
# Reglages pour 'vim'
# vim:set autoindent expandtab tabstop=4 shiftwidth=4:
# cursor: 16 del