getContextClosure(id: Int):
((Context) -> T) {
val ctx = ...
...
return { block: ((Context) -> T) ->
block(ctx)
...
}
Вызвать пытаюсь так:
getContextClosure(1) { ctx ->
...
}
getContextClosure(1)({ ctx -> ... })
Обсуждают сегодня