Maksim Volkau
Maksim Volkau
Понятно, буду разбираться. Спасибо.
Interesting. Btw I did not forget about nreact and hope to find time soon to look. Thanks for update.
@christophwille The issue is fixed on the FEC side and will be released with the next v4.2.0
@netcorefan1 Hi, could you share the Program.cs and csproj through the gist and not through the zip archive? Also, I am not sure what is the MemoryOwner you are talking...
@netcorefan1 I have added the [benchmark](https://github.com/dadhi/ImTools/blob/master/playground/ImTools.Benchmarks/MemoryOwnerVsHashMap.cs). You are comparing different things here: - `MemoryOwner.Span` is the pre-allocated Array, `ImHashMap` is the Map/Dictionary - Moreover, `ImHashMap` is the immutable map (e.g....
The work is done in the playground/Experiments project in the maps with the incremented names, last one at the moment is the `FHashMap91`.
@breenbob Hi, thanks for thorough analysis. I am struggling to find the cause before, so hopefully I will find something now with your details.
@breenbob Huh, sorry :-( I was for some reason assuming that `WithUseInterpretation()` is used. Yes, this is the way to solve it. In the related issues, I wanted to improve...
@breenbob This one looks promising: ```cs #if RELEASE && (ANDROID || IOS || MACCATALYST) defaultRules = defaultRules.WithUseInterpretation(); #endif ``` Maybe `RELEASE` is not required here, because why care for the...