Contents

ComposedTabularTransformer

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

Declaration

struct ComposedTabularTransformer<Inner, Outer> where Inner : TabularTransformer, Outer : TabularTransformer

Overview

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 transformation

See Also

Composition