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