What kind of semantics you’d want `AsyncResult<...
# coroutines
e
What kind of semantics you’d want
AsyncResult<T>
to have? Something like:
Copy code
interface AsyncResult<T> {
   suspend val value: T // when it gets allowed by Kotlin
}
or? By the way, it is very similar to
Lazy<T>
. So, is it
AsyncLazy
?