> 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/callables/callables.with_name_suffix.md).

# Callables.with\_name\_suffix()

`with_name_suffix(`*`suffix: str`*`,`` `*`sensitivity: bool = True`*`) →` [`Callables`](/glider-ide/api/callables.md)

Adds a filter to get callables whose names have the given suffix. Returns a filtered [Callables](/glider-ide/api/callables.md) child object. This method can be called on all [Callables](/glider-ide/api/callables.md) child classes: [Functions](/glider-ide/api/functions.md) and [Modifiers](/glider-ide/api/modifiers.md).

To filter given a list of suffixes, refer to [Callables.with\_name\_suffixes()](/glider-ide/api/callables/callables.with_name_suffixes.md).

### Functions Example

```python
from glider import *

def query():
  # Retrieve the functions that have `down` as suffix
  functions = Functions().with_name_suffix("down").exec(100)

  # Return the first five functions
  return functions[:5]
```

Output:

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

### Modifiers Example

```python
from glider import *

def query():
  # Retrieve the modifiers that have `Initialized` as suffix
  modifiers = Modifiers().with_name_suffix("Initialized").exec(100)

  # Return the first five modifiers
  return modifiers[:5]
```

Output:

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