Mateusz Burzyński
Mateusz Burzyński
Could you write down (with examples) what works and what doesn't with this? Which APIs have you considered? From what I can tell, at the very least, this forbids usage...
A predicate function type is not the same as a function returning a boolean. You need to mimic what the `find` itself is doing with its overloads to make it...
Your `arr` isn't represented in the parameters list so there is no way for TS to infer that type from anywhere here. `do_find(somePredicateForWhatever)` is a valid invocation and you want...
I believe this is a duplicate of: https://github.com/statelyai/xstate/issues/4645
Please add a test case verifying the fixed behavior.
I'd prefer new dedicated PRs instead of repurposing this one
The execution order of actions is roughly always this: ```ts [...exitActions, ...transitionActions, ...entryActions] ``` And in this example, a transition action tries to send an event to an actor that...
Thank you for a detailed issue. It is on my radar and I hope to investigate and respond in the coming week.
As to the article above... I'm not exactly sure - I have not been able to reproduce such overhead in the benchmarks I've done in the past. The more crazy...
I'm rather hesitant to expose this as those keys were never meant to be a public API - just a mechanism to deconflict styles between caches. I think `awesome-lib` should...