2022-08-24 12:04:53 +08:00
|
|
|
from PikaObj import *
|
2022-09-14 13:46:19 +08:00
|
|
|
|
2023-05-22 09:53:50 +08:00
|
|
|
|
2022-07-14 08:36:02 +00:00
|
|
|
class MemChecker:
|
2022-05-25 15:42:25 +08:00
|
|
|
def max(self): ...
|
|
|
|
def now(self): ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
2022-05-25 15:42:25 +08:00
|
|
|
def getMax(self) -> float: ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@PIKA_C_MACRO_IF("!PIKA_NANO_ENABLE")
|
2022-05-25 15:42:25 +08:00
|
|
|
def getNow(self) -> float: ...
|
2022-08-24 12:04:53 +08:00
|
|
|
|
|
|
|
@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
|
|
|
|
|
|
|
|
2022-07-14 08:36:02 +00:00
|
|
|
class SysObj:
|
2023-05-22 09:53:50 +08:00
|
|
|
pass
|
2023-03-09 13:56:17 +08:00
|
|
|
|
2021-12-28 01:21:47 +08:00
|
|
|
|
2022-09-26 11:03:14 +08:00
|
|
|
@PIKA_C_MACRO_IF("0")
|
2022-07-14 08:36:02 +00:00
|
|
|
class RangeObj:
|
2022-05-25 15:42:25 +08:00
|
|
|
def __next__(self) -> any: ...
|
2022-01-09 23:49:23 +08:00
|
|
|
|
|
|
|
|
2022-09-26 11:03:14 +08:00
|
|
|
@PIKA_C_MACRO_IF("0")
|
2022-07-14 08:36:02 +00:00
|
|
|
class StringObj:
|
2022-05-25 15:42:25 +08:00
|
|
|
def __next__(self) -> any: ...
|