https://kotlinlang.org logo
#coroutines
Title
# coroutines
j

jimn

08/11/2017, 3:22 AM
hi, how do i approximate a functional parser framework that uses threadlocals .... so that a parser context that is declarative does not need to have explicit stackframe and input parameters clogging up the kotlin code?
e

elizarov

08/11/2017, 6:31 AM
Take a look at
CoroutineContext
-- it is a map of coroutine-local elements
10 Views