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

Last updated