Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/f2prateek/rxjava-reject

Sample reject operator for RxJava
https://github.com/f2prateek/rxjava-reject

Last synced: about 1 month ago
JSON representation

Sample reject operator for RxJava

Awesome Lists containing this project

README

        

RxJava Reject
--------------

Reject operator for RxJava.

Usage
-----

```java
Observable.range(1, 10).lift(reject(n -> n % 2 == 0)).subscribe(System.out::println);
```