Contents

ComposedTransformer

A transformer that composes two transformers by applying them one after the other.

Declaration

struct ComposedTransformer<Inner, Outer> where Inner : Transformer, Outer : Transformer, Inner.Output == Outer.Input

Overview

The inner transformer’s output must match the outer transformer input. The result of this transformer is equivalent to invoking outer(inner(x)) on an input x,

Topics

Creating the transformer

Getting the properties

Performing the transformation

See Also

Composition