Implementation detail: If I write an extension fun...
# getting-started
m
Implementation detail: If I write an extension function like so:
Copy code
val Extension.dispatcher by lazy {
    SomeDispatcher()
}
Will the
dispatcher
property be different for every Extension or will there be one global dispatcher
r
Write a test? If you're unsure so will be the next person to read it (even if it's you in 6 months).