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