Tmpod
01/11/2023, 8:46 PMsuspend context(Foo, Bar) () -> Unit
, however its .invoke
method is requiring two arguments, one for each receiver. The thing is: I explicitly have the receiver for one of them, but the other one is also a context receiver of the callee, so it isn't available as this
. Is there any way I can call this function?
Thank you!ephemient
01/11/2023, 8:48 PMthis@Foo
, this@Bar
?Alexey Belkov [JB]
01/12/2023, 10:36 AMTmpod
01/12/2023, 4:11 PM