---
title: ComposedTabularTransformer
framework: createmlcomponents
role: symbol
role_heading: Structure
path: createmlcomponents/composedtabulartransformer
---

# ComposedTabularTransformer

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

## Declaration

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

## Overview

Overview The result of this transformer is equivalent to invoking outer(inner(x)) on an input x,

## Topics

### Creating the transformer

- [init(_:_:)](createmlcomponents/composedtabulartransformer/init(_:_:).md)

### Getting the properties

- [inner](createmlcomponents/composedtabulartransformer/inner.md)
- [outer](createmlcomponents/composedtabulartransformer/outer.md)

### Applying a transformation

- [applied(to:eventHandler:)](createmlcomponents/composedtabulartransformer/applied(to:eventhandler:).md)

## Relationships

### Conforms To

- [Copyable](swift/copyable.md)
- [CustomDebugStringConvertible](swift/customdebugstringconvertible.md)
- [Decodable](swift/decodable.md)
- [Encodable](swift/encodable.md)
- [Equatable](swift/equatable.md)
- [Escapable](swift/escapable.md)
- [Sendable](swift/sendable.md)
- [SendableMetatype](swift/sendablemetatype.md)
- [TabularTransformer](createmlcomponents/tabulartransformer.md)
- [Transformer](createmlcomponents/transformer.md)

## See Also

### Composition

- [ComposedTransformer](createmlcomponents/composedtransformer.md)
- [ComposedTemporalTransformer](createmlcomponents/composedtemporaltransformer.md)
