poohbar
interface Transformer<T> { fun apply(value: T): Any? } val t: Transformer<String> = { v -> v }