also, is there a way to return "self" like: `fun x...
# getting-started
j
also, is there a way to return "self" like:
fun x() : this
a
not on classes/interfaces afaik, but you can do it with extension functions
fun <T> T.foo(): T = this
j
that's cool. thanks!