4 lines
159 B
Plaintext
4 lines
159 B
Plaintext
source = channel.of( [1, 'alpha'], [2, 'beta'] )
|
|
target = channel.of( [1, 'x'], [1, 'y'], [1, 'z'], [2, 'p'], [2, 'q'], [2, 't'] )
|
|
|
|
source.cross(target).view() |