Callables.with_arg_type()
Functions Example
from glider import *
def query():
# Retrieve the functions that have `Order` as one of their argument types
functions = Functions().with_arg_type("Order").exec(100)
# Return the first five functions
return functions[:5]
Modifiers Example

Last updated