TransformFunction

typealias TransformFunction<T, R> = (T) -> R(source)

Transform function that takes an input of type T and returns an output of type R.