Transformer

interface Transformer<OUT, IN>(source)

A Transformer transforms objects of type.

Implementations are free to return new objects or mutate the incoming value.

Functions

Link copied to clipboard
abstract fun transform(in: IN): OUT
Transforms the given object, and returns the transformed value.