Imports API functions to this class.
(cls)
| 75 | |
| 76 | @classmethod |
| 77 | def initialize(cls) -> None: |
| 78 | """Imports API functions to this class.""" |
| 79 | if not cls._initialized: |
| 80 | super().initialize() |
| 81 | apifunction.ApiFunction.importApi(cls, cls.name(), cls.name()) |
| 82 | apifunction.ApiFunction.importApi(cls, 'reduce', cls.name()) |
| 83 | cls._initialized = True |
| 84 | |
| 85 | @classmethod |
| 86 | def reset(cls) -> None: |