Why kotlin extensions can not have `this` as named...
# announcements
d
Why kotlin extensions can not have
this
as named argument?
this
is not meaningful enough sometimes:
Copy code
with(listOfListOfSomeVeryMeaningfulObjects.flatten()) {
    ...
    this[index].title
}
i know i can use lambdas instead of with-extension, just for illustration