Callables.with_name_prefixes()
Functions Example
from glider import *
def query():
# Retrieve the functions that have `min` or `max` as prefix
functions = Functions().with_name_prefixes(["min", "max"]).exec(100)
# Return the first five functions
return functions[:4]
Modifiers Example

Last updated