> 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="/files/5c59QOfV3lqmEuhFbUhA" alt=""><figcaption></figcaption></figure>
