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