Function.is_private()

Returns true if the visibility of the function is private, otherwise returns false.

is_private() → bool

Example

from glider import *

def query():
    private_functions = (
      Functions()
      .exec(20)
      .filter(lambda x: x.is_private())
    )

    return private_functions

Output

Last updated