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

# Callable.callee\_values()

`callee_values() →` [`APIList`](/glider-ide/api/iterables/apilist.md)`[`[`Call`](/glider-ide/api/value/call.md)`]`

## Query Example

```python
from glider import *

def query():
    functions = Functions().exec(1,5)

    for function in functions:
        for call in function.callee_values():
            print(f"function {function.name}, call {call.expression}")

    return functions
```

## Example Output

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