30 lines
491 B
Python
Raw Normal View History

from PikaObj import *
2022-09-14 13:46:19 +08:00
class MemChecker:
2022-05-25 15:42:25 +08:00
def max(self): ...
def now(self): ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def getMax(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def getNow(self) -> float: ...
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
2022-05-25 15:42:25 +08:00
def resetMax(self): ...
2021-10-01 20:00:15 +08:00
class SysObj:
pass
2021-12-28 01:21:47 +08:00
@PIKA_C_MACRO_IF("0")
class RangeObj:
2022-05-25 15:42:25 +08:00
def __next__(self) -> any: ...
2022-01-09 23:49:23 +08:00
@PIKA_C_MACRO_IF("0")
class StringObj:
2022-05-25 15:42:25 +08:00
def __next__(self) -> any: ...