``` import kotlin.also as alsoFromKotlin infix fun...
# announcements
r
Copy code
import kotlin.also as alsoFromKotlin
infix fun <T> T.also(block: (T) -> Unit): T = alsoFromKotlin(block)
✔️ 2
h
it works, thank you. I also got problem with how to import those function to avoid name clash, but you teach me this kind of import which works 🙂