> 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_external.md).

# Function.is\_external()

Returns true if the visibility of the function is external, otherwise returns false.

`is_external() → bool`

## Query Example

```python
from glider import *

def query():
    external_functions = (
      Functions()
      .exec(100)
      .filter(lambda x: x.is_external())
    )

    return external_functions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FGWC96Pqr5CgePo091cnH%2FScreenshot%202025-08-15%20at%202.48.19%E2%80%AFPM.png?alt=media&amp;token=d1a8ca33-9260-4207-a222-f0245e67ab4e" alt=""><figcaption></figcaption></figure>
