Functions.with_modifier_name()
Example
from glider import *
def query():
# Fetch a list of functions with nonReentrant modifier
functions = Functions().with_modifier_name('nonReentrant').exec(2)
return functionsOutput

Last updated