Is there any way to call this with +: ``` inline f...
# announcements
n
Is there any way to call this with +:
Copy code
inline fun <T> T.add(f: T.() -> T) : T {
    return this.f()
}
r
It needs to be an
operator fun
n
ah right
hmm, now it says illegal function name
plus not add
👍 1
Thanks!