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

Last updated