Turns a list-typed stream [element_type] into a stream of its individual elements element_type, emitting one output tick per element. Purely structural: it removes one layer of list nesting and carries the element type through unchanged.
Fan a per-element stream out, process each, then regroup by length.
Iterate list elements through a comparison and serialise the matches.
Flatten a list and gate the elements through a boolean filter.
[element_type]; the output stream type is exactly element_type, fixed by the producer of the list, not by this transformation.