# Filtering

In a [push based approach](http://reactivex.io/rxjs/manual/overview.html#pull-versus-push), picking and choosing how and when to accept items is important. These operators provide techniques for accepting values from an observable source and dealing with [backpressure](https://github.com/Reactive-Extensions/RxJS/blob/master/doc/gettingstarted/backpressure.md).

## Contents

* [audit](/learn-rxjs/operators/filtering/audit.md)
* [auditTime](/learn-rxjs/operators/filtering/audittime.md)
* [debounce](/learn-rxjs/operators/filtering/debounce.md)
* [debounceTime](/learn-rxjs/operators/filtering/debouncetime.md) ⭐
* [distinct](/learn-rxjs/operators/filtering/distinct.md)
* [distinctUntilChanged](/learn-rxjs/operators/filtering/distinctuntilchanged.md) ⭐
* [distinctUntilKeyChanged](/learn-rxjs/operators/filtering/distinctuntilkeychanged.md)
* [filter](/learn-rxjs/operators/filtering/filter.md) ⭐
* [find](/learn-rxjs/operators/filtering/find.md)
* [first](/learn-rxjs/operators/filtering/first.md)
* [ignoreElements](/learn-rxjs/operators/filtering/ignoreelements.md)
* [last](/learn-rxjs/operators/filtering/last.md)
* [sample](/learn-rxjs/operators/filtering/sample.md)
* [single](/learn-rxjs/operators/filtering/single.md)
* [skip](/learn-rxjs/operators/filtering/skip.md)
* [skipUntil](/learn-rxjs/operators/filtering/skipuntil.md)
* [skipWhile](/learn-rxjs/operators/filtering/skipwhile.md)
* [take](/learn-rxjs/operators/filtering/take.md) ⭐
* [takeLast](/learn-rxjs/operators/filtering/takelast.md)
* [takeUntil](/learn-rxjs/operators/filtering/takeuntil.md) ⭐
* [takeWhile](/learn-rxjs/operators/filtering/takewhile.md)
* [throttle](/learn-rxjs/operators/filtering/throttle.md)
* [throttleTime](/learn-rxjs/operators/filtering/throttletime.md)

⭐ - *commonly used*


---

# Agent Instructions: Querying This Documentation

If you need additional information that is not directly available in this page, you can query the documentation dynamically by asking a question.

Perform an HTTP GET request on the current page URL with the `ask` query parameter:

```
GET https://www.learnrxjs.io/learn-rxjs/operators/filtering.md?ask=<question>
```

The question should be specific, self-contained, and written in natural language.
The response will contain a direct answer to the question and relevant excerpts and sources from the documentation.

Use this mechanism when the answer is not explicitly present in the current page, you need clarification or additional context, or you want to retrieve related documentation sections.
