> 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/contracts/contracts.with_function_name_not.md).

# Contracts.with\_function\_name\_not()

`with_function_name_not(name: str, sensitivity: bool = True) ->` [`Contracts`](/glider-ide/api/contracts.md)

## Query Example

```python
from glider import *

def query():
  contracts = Contracts().with_function_name_not('transfer').exec(1,1)

  functions = contracts.functions().exec()
  for function in functions:
    print(function.name)

  return contracts
```

## Output Example

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