Returns true if the function has modifiers, otherwise returns false
Last updated 6 days ago
has_modifiers() β bool
from glider import * def query(): functions_with_modifiers = ( Functions() .exec(100) .filter(lambda x: x.has_modifiers()) ) return functions_with_modifiers