Returns true if the function is constructor, otherwise returns false.
Last updated 1 month ago
is_constructor() → bool
from glider import * def query(): constructors = ( Functions() .exec(100) .filter(lambda x: x.is_constructor()) ) return constructors