Contents

ComposedTemporalTransformer

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

Declaration

struct ComposedTemporalTransformer<Inner, Outer> where Inner : TemporalTransformer, Outer : TemporalTransformer, 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

Applying a transformer

See Also

Composition