Functions.without_modifier_names()
without_modifier_names(
names: List[str]
,
sensitivity: bool = True
) →
Functions
Adds a filter to get functions that don't have any modifier with one of the given names.
Example
from glider import *
def query():
# Fetch a list of functions without modifiers from the given list
functions = Functions().without_modifier_names(['onlyAdmin','onlyOwner']).exec(10)
return functions
Output

PreviousFunctions.with_one_of_the_modifier_names()NextFunctions.with_one_of_the_modifier_name_regexes()
Last updated