Get a function by name.
(self, name: str)
| 88 | return f"{_MODULE_PREFIX}.{parts}_{unique_suffix}" |
| 89 | |
| 90 | def get_function(self, name: str) -> Optional[Callable]: |
| 91 | """Get a function by name.""" |
| 92 | if not self._loaded: |
| 93 | self.load_functions() |
| 94 | return self.functions.get(name) |
| 95 | |
| 96 | def has_function(self, name: str) -> bool: |
| 97 | """Check if a function exists.""" |
no test coverage detected