Hello, I'd like to leverage the context capabilities of effects to manage multiple intersecting requirements that I want to use when constructing stuff that may need those in whatever order, instead of relying on passing data back and forth to functions every time I need some "context", everytime slightly different. I wondered how I can express the need for multiple "tags" before applying my logic.
If I want to construct C and I need A and B, how can I express such requirement AND use A and B values to build C? Ideally I want no piping or yielding or Context.get. I just want to specify the parameters and use them. Is something like this or similar to this possible? Are there some utilities for this?