val test: Int.(String) -> Int = {
plus((this))
}
When defining this type of extension function
, how can I use arguments( Here, the argument of type String)
inside the block?
When defining extension functions
at the same time as declaration like this, can only this
be used?