> 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/functions/functions.with_modifier_name.md).

# Functions.with\_modifier\_name()

`with_modifier_name(`*`name: str`*`,`` `*`sensitivity: bool = True`*`) →` [`Functions`](/glider-ide/api/functions.md)

Adds a filter to get functions that have a modifier with the given name.

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions with nonReentrant modifier
  functions = Functions().with_modifier_name('nonReentrant').exec(2)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FM3JqAhLOphmvDxRTENuU%2Fimage.png?alt=media&amp;token=ced74a10-0a26-4c9d-b6f9-bc11cc777d8c" alt=""><figcaption></figcaption></figure>
