Slide 102
Slide 102 text
Unless otherwise indicated, these slides are © 2013-2018 Pivotal Software, Inc. and licensed under a
Creative Commons Attribution-NonCommercial license: http://creativecommons.org/licenses/by-nc/3.0/
!102
Flux.range(5, 3)
.map(i -> i + 3)
.filter(i -> i % 2 == 0)
.buffer(3)
5, 6, 7 |
8, 9, 10 |
8, 10 |
[8,10]|