Returns the function's or modifier's signature.
Last updated 1 month ago
signature() → str
from glider import * def query(): functions = Functions().exec(3,3) for function in functions: # Aggregate the signature of each function along with their name print(f"function name {function.name} | signature {function.signature()}") return functions