Returns true if the function has modifiers, otherwise returns false
Last updated 1 month 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