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

# Functions.without\_properties()

without\_properties is deprecated and will be removed in future versions. Please use with\_properties instead. Adds a filter to get functions that don't have any of the given properties.

**Deprecated**: This method is deprecated and will be removed in future versions.

**Alternative:** Use `with_properties()` instead for improved functionality.

`without_properties(`*`properties: List[MethodProp]`*`) →` [`Functions`](/glider-ide/api/functions.md)

## Example

```python
from glider import *

def query():
  
  # Fetch a list of functions which are not external/public
  functions = Functions().without_properties([MethodProp.EXTERNAL, MethodProp.PUBLIC]).exec(3)

  return functions
```

## Output

<figure><img src="https://2237101709-files.gitbook.io/~/files/v0/b/gitbook-x-prod.appspot.com/o/spaces%2FDX4Ojc4j1ef51TUAtYOx%2Fuploads%2F2SLZvjxu2QOz7bxi3wnh%2Fimage.png?alt=media&amp;token=27f9f00a-962b-4aef-8a19-b0314ad6af23" alt=""><figcaption></figcaption></figure>
