Function.has_modifiers()

Returns true if the function has modifiers, otherwise returns false

has_modifiers() → bool

Example

from glider import *

def query():
    functions_with_modifiers = (
      Functions()
      .exec(100)
      .filter(lambda x: x.has_modifiers())
    )

    return functions_with_modifiers

Output

Last updated