Transformed
class Transformed<IN, OUT>(val source: TransactionValue<IN>, val transform: (IN) -> OUT) : TransactionValue<OUT>
Result of transforming another value.
Parameters
IN
The input type of the transformation.
OUT
The output type of the transformation.
Properties
Functions
Link copied to clipboard
Applies a transformation to a TransactionValue, creating a new, transformed value. This function is type-safe.