Providing Excess Context to an Effect: Performance Implications?
What's happening when I provide more than necessary context to an effect ?
will it have a downside / perf issues ?
will it have a downside / perf issues ?
const appServices: Layer.Layer<A | B | C, never, never>;
const myEffect: Effect<any, any, A>
const runnable = Effect.provide(myEffect, appServices);