Interface Transform<A, B>

A "transform" is both a sink and a source where the values it consumes and the values that can be consumed from it are connected in some way. It is a function that takes a source and returns a source.

interface Transform<A, B> ((source) => B)

Type Parameters

  • A
  • B = A
  • Parameters

    • source: A

    Returns B