IPoolManager

- Added more docs for `grabFunctionDef(string name)`
This commit is contained in:
Tristan B. Velloza Kildaire 2023-12-09 16:24:50 +02:00
parent 15d68f4e42
commit e338462026
1 changed files with 3 additions and 0 deletions

View File

@ -35,6 +35,9 @@ public interface IFuncDefStore
* Params:
* name = the name of the function
* Returns: the `FunctionData`
* Throws:
* FuncDefStoreException if the function
* could not be found
*/
public FunctionData grabFunctionDef(string name);
}