From 1bf0cc36ef54b84a384ffe1d4145bcf17fe43b60 Mon Sep 17 00:00:00 2001 From: Dave Moten Date: Fri, 10 Apr 2015 17:19:26 +1000 Subject: [PATCH] describe operators in more detail --- README.md | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/README.md b/README.md index 0b91776..f720199 100644 --- a/README.md +++ b/README.md @@ -1,6 +1,12 @@ # RxJava String -String operators for [RxJava](https://github.com/ReactiveX/RxJava). +String and Byte operators for [RxJava](https://github.com/ReactiveX/RxJava): + +* Read bytes from an ```InputStream``` as a stream of byte arrays (```StringObservable.from```) +* Read text from a ```Reader``` as a stream of ```String``` (```StringObservable.from```) +* Convert between ```Observable``` and ```Observable``` (```StringObservable.encode, decode```) +* Split text by regex (rechunks a stream of ```String```) (```StringObservable.split```) +* Join text by separator (```StringObservable.join, stringConcat```) ## Master Build Status