8000 Minor edits on README by davidmoten · Pull Request #16 · ReactiveX/RxJavaString · GitHub
[go: up one dir, main page]

Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -4,9 +4,9 @@ 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<Byte>``` and ```Observable<String>``` (```StringObservable.encode, decode```)
* Convert between ```Observable<byte[]>``` and ```Observable<String>``` (```StringObservable.encode, decode```)
* Split text by regex (rechunks a stream of ```String```) (```StringObservable.split```)
* Join text by separator (```StringObservable.join, stringConcat```)
* Join text (```StringObservable.join, stringConcat```)

## Master Build Status

Expand Down
0