> For the complete documentation index, see [llms.txt](https://docs.r.xyz/llms.txt). Markdown versions of documentation pages are available by appending `.md` to page URLs; this page is available as [Markdown](https://docs.r.xyz/glider-ide/api/function/function.is_view.md).

# Function.is\_view()

Returns true if the function is view, otherwise returns false.

`is_view() → bool`

## Example

```python
from glider import *

def query():
    view_functions = (
      Functions()
      .exec(100)
      .filter(lambda x: x.is_view())
    )

    return view_functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FsJX4ZQ2gjRgAfNq5faV1%2Fimage.png?alt=media&amp;token=4caa2446-ab78-4b8f-a314-06f3fb66638a" alt=""><figcaption></figcaption></figure>
