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

Returns a list of Call objects that represents called functions from the function/modifier.

`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="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F8JkmaJhKh4oJAo45eA28%2Fimage.png?alt=media&amp;token=7e03ec61-2a86-464d-a7f2-1dee6b589444" alt=""><figcaption></figcaption></figure>
