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

# Function.caller\_functions()

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

The caller functions are the functions that directly call the specified function.

## Example

```python
from glider import *

def query():
  # Retrieve a function with name _afterTokenTransfer
  functions = Functions().with_name('_afterTokenTransfer').exec(1)

  # Return its caller functions
  return functions[0].caller_functions().exec()
```

## Output

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