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