> 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/instructions/instructions.functions_recursive.md).

# Instructions.functions\_recursive()

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

Consider the following Solidity code:

```solidity
function includeInFee(address account) public onlyOwner {
        _isExcludedFromFee[account] = false;
}
```

For the following instruction:

```solidity
_isExcludedFromFee[account] = false;
```

The `includeInFee` function can call the instruction above. &#x20;

With `functions_recursive()`, one can retrieve the functions that are called recursively through the entire call chain.

## Query Example

```python
from glider import *

def query():
    # Fetch a function
    functions = (
        Functions()
        .with_name("includeInFee")
        .exec(1)
    )

    print(
        functions
        .instructions()
        .functions_recursive()
        .exec()
        .name
    )

    return functions
```

## Example Output

<figure><img src="/files/6HrcWEvmfWh1ax9GP6TI" alt=""><figcaption></figcaption></figure>
