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

# Instructions.with\_one\_of\_callee\_names()

Adds a filter to get Instructions that call a function with the given signature.

`with_one_of_callee_names(names: List[str], sensitivity: bool = True) →` [`Instructions`](/glider-ide/api/instructions.md)

## Query Example

```python
from glider import *


def query():
  return (
    Instructions()
    .with_one_of_callee_names(["deposit", "withdraw"])
    .exec(2,1)
  )
```

## Example Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FRTxhcbCRLOHGaTs6hqgw%2Fimage.png?alt=media&amp;token=45b3ded7-74ec-4cf6-a226-ba0441ee8a93" alt=""><figcaption></figcaption></figure>

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FBOV0QpOrJOIlXlH0UxEa%2Fimage.png?alt=media&amp;token=33bd2556-f191-4d49-aa1e-652f5f61c7fd" alt=""><figcaption></figcaption></figure>
