3 lines
71 B
Plaintext
3 lines
71 B
Plaintext
channel.of( 1, 2, 3 )
|
|
.flatMap { n -> [ n, n*2, n*3 ] }
|
|
.view() |