Function.is_global()

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

is_global() → bool

Example

from glider import *

def query():
    global_functions = (
      Functions()
      .exec(30_000)
      .filter(lambda x: x.is_global())
    )

    return global_functions

Output

Last updated