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

# Function.modifiers()

`modifiers() →` [`Modifiers`](/glider-ide/api/modifiers.md)

Returns the [Modifiers](/glider-ide/api/modifiers.md) object for the modifiers of the function.

## Example

```python
from glider import *

def query():
  # Fetch a list of functions
  functions = Functions().with_one_property([MethodProp.HAS_MODIFIERS]).exec(1)

  # Retrieve the modifiers of the first function
  modifers = functions[0].modifiers().exec()

  return modifers
```

## Output

<figure><img src="/files/uEFTRX01BUA5V5jUnDS9" alt=""><figcaption></figcaption></figure>
