Created
January 18, 2017 22:15
-
-
Save jwkidd3/1a6543a98267b40b361076fc183438cc to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| Observable.range(0, 5) | |
| .window(3, 1) | |
| .flatMap(o -> o.toList()) | |
| .subscribe(System.out::println); |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment