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

# Function.has\_modifiers()

Returns true if the function has modifiers, otherwise returns false

`has_modifiers() → bool`

## Example

```python
from glider import *

def query():
    functions_with_modifiers = (
      Functions()
      .exec(100)
      .filter(lambda x: x.has_modifiers())
    )

    return functions_with_modifiers
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F6Q3cdzEaUdZDy7LhFZPr%2Fimage.png?alt=media&amp;token=39cc81c9-be30-4e97-92b3-a1eb52af9226" alt=""><figcaption></figcaption></figure>
