Came across this Interface in Compose: `fun inter...
# getting-started
a
Came across this Interface in Compose:
fun interface InputTransformation {
fun TextFieldBuffer.transformInput()
companion object : InputTransformation {
override fun TextFieldBuffer.transformInput() {
// Noop.
}
}
}
I have not seen an undefined (open)? extension method in a Interface before (or in the extension method docs), anyone know what it is officially called?
y
Usually called a member extension function