ComposedTabularTransformer
A transformer that composes two tabular transformers by applying them one after the other.
Declaration
struct ComposedTabularTransformer<Inner, Outer> where Inner : TabularTransformer, Outer : TabularTransformerOverview
The result of this transformer is equivalent to invoking outer(inner(x)) on an input x,