> 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/callable/callable.callee_functions.md).

# Callable.callee\_functions()

Returns a Functions object that represents called functions from the function/modifier.

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

## Example

```python
from glider import *
def query():
  functions = Functions().exec(30)

  called_functions = []
  for function in functions:
    for called in function.callee_functions().exec():
      # Return each called function from this specific one
      called_functions.append(called)

  return called_functions
```

## Example output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2Fj1mGifxtvu51zvL59e0c%2Fimage.png?alt=media&amp;token=9f14d623-167f-46f9-9e68-21acc1633e34" alt=""><figcaption></figcaption></figure>
