Last updated 4 months ago
with_all_modifier_names(names: List[str], sensitivity: bool = True) →
Adds a filter to get functions that have modifiers with all the given names.
from glider import * def query(): functions = Functions().with_all_modifier_names(['lock', 'onlyOwner']).exec(1) return functions
Functions