> 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_properties.md).

# Functions.with\_properties()

`with_properties(expr) ->` [`Functions`](/glider-ide/api/functions.md)

E.g: `expr = FunctionFilters.HAS_ARGS & ~FunctionFilters.IS_CONSTRUCTOR` `with_properties(expr)` will return functions that have arguments and are not a constructor.

## Query Example

```python
from glider import *

def query():
    return (
        Functions()
        .with_properties(FunctionFilters.IS_EXTERNAL | FunctionFilters.IS_PUBLIC)
        .exec(10)
    )
```

## Example Output

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