apomelov
11/17/2017, 7:23 AMbuildSequence {
jdbc.query(sql, parmerters, { rs, _ ->
yield( foo(rs) )
})
}
but the compiler complaints about that yield, it is out of coroutine body. Outside of lambda it works. I'm interesting what is happening here and can I work it around somehow?