Returns true if the function is view, otherwise returns false.
Last updated 23 days ago
is_view() → bool
from glider import * def query(): view_functions = ( Functions() .exec(100) .filter(lambda x: x.is_view()) ) return view_functions