Returns true if the visibility of the function is external, otherwise returns false.
Last updated 6 days ago
is_external() β bool
from glider import * def query(): external_functions = ( Functions() .exec(10, 100) .filter(lambda x: x.is_external()) ) return external_functions