Returns true if the visibility of the function is private, otherwise returns false.
Last updated 8 days ago
is_private() β bool
from glider import * def query(): private_functions = ( Functions() .exec(20) .filter(lambda x: x.is_private()) ) return private_functions