As I am browsing through Flow sources, I came acro...
# coroutines
l
As I am browsing through Flow sources, I came across
internal object NullSurrogate
. Is such thing really reasonably needed? I thought that Kotlin can handle nulls pretty well already 🙂
g
It used to distinguish between
null
as flow value and non initialised state of flow operator
👍 2