> 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()

`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="/files/WM83CEysbK2QxxiHljuK" alt=""><figcaption></figcaption></figure>
