Skip to content

thomasnield/rxkotlin-extras

Folders and files

NameName
Last commit message
Last commit date

Latest commit

 

History

14 Commits
 
 
 
 
 
 
 
 
 
 

Repository files navigation

rxkotlin-extras

Kotlin Extensions to the rxjava-extras library.

This is in early development and any help is appreciated! The goal is take David Moten's excellent operators for RxJava and make them extensions onto the Observable.

Quick Example:

val source = Observable.just("Alpha","Beta","Gamma", "Delta", "Epsilon")

source.toListWhile { list,t -> list.isEmpty() || list[0].length == t.length }
        .subscribe { println(it) }

OUTPUT

[Alpha]
[Beta]
[Gamma, Delta]
[Epsilon]

About

Kotlin Extensions to the rxjava-extras library

Resources

License

Stars

Watchers

Forks

Releases

No releases published

Packages

No packages published

Languages