43 lines
948 B
Python
Raw Normal View History

2022-04-26 21:34:43 +08:00
#api
2021-10-11 19:43:21 +08:00
from PikaObj import *
class Operator(TinyObj):
2022-04-07 23:01:59 +08:00
def plusInt(self, num1: int, num2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def plusFloat(self, num1: float, num2: float) -> float:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def minusInt(self, num1: int, num2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def minusFloat(self, num1: float, num2: float) -> float:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def equalInt(self, num1: int, num2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def equalFloat(self, num1: float, num2: float) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def graterThanInt(self, num1: int, num2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def graterThanFloat(self, num1: float, num2: float) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def lessThanInt(self, num1: int, num2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def lessThanFloat(self, num1: float, num2: float) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def AND(self, flag1: int, flag2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def OR(self, flag1: int, flag2: int) -> int:
2021-10-11 19:43:21 +08:00
pass
2022-04-07 23:01:59 +08:00
def NOT(self, flag: int) -> int:
pass