Skip to content

Add transpose operator #440

@pditommaso

Description

@pditommaso

The transpose operator implements the opposite function of groupTuple. For example given a channel emitting the following tuples:

[ key1, [value1, value2] ] 
[ key2, [value3, value4] ] 

apply transpose it will return the following:

[ key1, value1 ]
[ key1, value2 ] 
[ key2, value3 ] 
[ key2, value4 ]

Metadata

Metadata

Assignees

No one assigned

    Type

    No type

    Projects

    No projects

    Milestone

    Relationships

    None yet

    Development

    No branches or pull requests

    Issue actions