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

Last updated