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

# Functions.caller\_functions\_recursive()

Returns a Functions object representing the functions through which the functions from current Functions object could be called.

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

The function will retrieve ***extended*****/*****inter-procedural*** functions, meaning it works recursively. It returns the Functions object representing all the functions that ultimately call the function in question.

## Query Example

```python
from glider import *


def query():
  funcs = Functions().with_name("transfer").caller_functions_recursive().exec(2)
  
  return funcs
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FPmklBdexDxZrK7ZBtKGm%2FScreenshot%202025-08-21%20at%209.54.44%E2%80%AFAM.png?alt=media&amp;token=36190ff3-4849-45fc-ba1f-edfe81372c0e" alt=""><figcaption></figcaption></figure>
