Function.is_external()
Returns true if the visibility of the function is external, otherwise returns false.
is_external() → bool
Example
from glider import *
def query():
external_functions = (
Functions()
.exec(10, 100)
.filter(lambda x: x.is_external())
)
return external_functions
Output

Last updated