Kotlin Power Tools
Note this blog post contains my notes from the Power Tools section of the book Atomic Kotlin. Consider buying a copy of the book for a more detailed reference. Extension Lambdas An extension lambda is like an extension function. It defines a lambda instead of a function. Example: package extensionlambdas import atomictest.eq val va (String, Int) -> String = { str, n -> str.repeat(n) + str.repeat(n) } val vb: String.(Int) -> String = { this.