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

# Function.is\_global()

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

`is_global() → bool`

## Query Example

```python
from glider import *

def query():
    global_functions = (
      Functions()
      .exec(85_200)
      .filter(lambda x: x.is_global())
    )

    return global_functions
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FwzZjEwVrKQuA6nrzEAL7%2FScreenshot%202025-08-15%20at%202.58.32%E2%80%AFPM.png?alt=media&amp;token=00c04652-c0df-4fcb-ad09-edb48ed751ff" alt=""><figcaption></figcaption></figure>
