2022-04-26 21:34:43 +08:00
|
|
|
#api
|
2021-10-01 20:00:15 +08:00
|
|
|
from PikaObj import *
|
|
|
|
|
2021-11-17 09:59:56 +08:00
|
|
|
class MemChecker(TinyObj):
|
2022-04-07 23:21:07 +08:00
|
|
|
def max(self):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def now(self):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def getMax(self) -> float:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def getNow(self) -> float:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def resetMax(self):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
|
|
|
|
|
|
|
|
|
|
|
class SysObj(BaseObj):
|
2022-04-07 23:21:07 +08:00
|
|
|
def type(self, arg: any):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def remove(self, argPath: str):
|
2021-10-01 20:00:15 +08:00
|
|
|
pass
|
2021-11-24 11:15:50 +08:00
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def int(self, arg: any) -> int:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def float(self, arg: any) -> float:
|
2021-11-24 11:15:50 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def str(self, arg: any) -> str:
|
2022-01-09 00:13:02 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def iter(self, arg: any) -> any:
|
2021-12-28 01:21:47 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def range(self, a1: int, a2: int) -> any:
|
2021-12-28 01:21:47 +08:00
|
|
|
pass
|
2021-11-24 11:15:50 +08:00
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def __set__(self, obj: any, key: any, val: any, obj_str: str):
|
2022-01-13 21:57:32 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-07 23:21:07 +08:00
|
|
|
def __get__(self, obj: any, key: any) -> any:
|
2022-01-13 21:57:32 +08:00
|
|
|
pass
|
|
|
|
|
2022-04-09 01:15:21 +08:00
|
|
|
def len(self, arg:any) -> int:
|
|
|
|
pass
|
|
|
|
|
2022-04-13 13:23:45 +08:00
|
|
|
def list(self) -> any:
|
|
|
|
pass
|
|
|
|
|
2022-04-14 16:12:18 +08:00
|
|
|
def dict(self) -> any:
|
|
|
|
pass
|
2021-12-28 01:21:47 +08:00
|
|
|
|
|
|
|
class RangeObj(TinyObj):
|
2022-04-07 23:21:07 +08:00
|
|
|
def __next__(self) -> any:
|
2021-12-28 01:21:47 +08:00
|
|
|
pass
|
2022-01-09 23:49:23 +08:00
|
|
|
|
|
|
|
|
|
|
|
class StringObj(TinyObj):
|
2022-04-07 23:21:07 +08:00
|
|
|
def __next__(self) -> any:
|
2022-01-09 23:49:23 +08:00
|
|
|
pass
|
2022-02-25 18:05:54 +08:00
|
|
|
|
|
|
|
class PikaObj(TinyObj):
|
|
|
|
pass
|