> 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/methodprop/methodprop.has_args.md).

# MethodProp.HAS\_ARGS

The HAS\_ARGS property adds a filter to either include or exclude functions that have arguments in their signature.

An example of a function with a signature would be&#x20;

```solidity
function myFunction(uint256 investAmount){}
```

In the example below the query will filter out all functions that have arguments and only return those functions with no arguments in their signature

```python
from glider import *

def query():
  props_excluded = [MethodProp.HAS_ARGS]

  functions = Functions()\
      .without_properties(props_excluded)\
      .exec(5)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2FEb4N4YO1cXmtyGkanEN4%2Fimage.png?alt=media&amp;token=416f6227-638f-4e3d-b412-37e30fe2a926" alt=""><figcaption></figcaption></figure>
