Function.is_global()

Returns true if the function is global, otherwise returns false.

is_global() → bool

Query Example

from glider import *

def query():
    global_functions = (
      Functions()
      .exec(85_200)
      .filter(lambda x: x.is_global())
    )

    return global_functions

Example Output

Last updated