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