> 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/modifier/modifier.functions.md).

# Modifier.functions()

`functions() →` [`Functions`](/glider-ide/api/functions.md)

Returns the [Functions](/glider-ide/api/functions.md) object for the functions which have the modifier.

An example to retrieve the functions object for the modifier is as below

```python
from glider import *
def query():
  modifierlist = Modifiers()\
      .with_name_prefix("check")\
      .exec(1)
  
  results =  []

  for modd in modifierlist:
    for funcs in modd.functions().exec():
      results.append(funcs)

  return results
```

## Output

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