JPaja
JPaja
When we want to emulate some methods from certain point, or we want to restore `CurrentState` to some prevous sate we when we want to modify it Current solution would...
This could be useful in cases when emulator is used for static analysis and we dont know exact platform or we want to have result for boath This would disable...
### Problem Description new ref Struct have special custom attribute called "IsRefLike" that differentiate them from normal structs https://learn.microsoft.com/en-us/dotnet/csharp/language-reference/proposals/csharp-7.2/span-safety#metadata-representation-of-ref-like-structs Additionally System.Type has property called IsByRefLike which indicates ref struct https://learn.microsoft.com/en-us/dotnet/api/system.type.isbyreflike?view=net-6.0...
**Is your feature request related to a problem? Please describe.** There is no support for sending some special keys in raw mode like Home, End, PgUp, PgDn, F{n}, and similar...
I think operator `>>` should be implemented to use bvlshr as default since BitVectors dont have sign. ```rs impl_binary_op!( BV
# Idea This feature would allow users to type text input that would be inlined in code with magic command, and text input change would not have any affect on...
Adds support for argon2id hash that is currently recommended by [OWASP](https://cheatsheetseries.owasp.org/cheatsheets/Password_Storage_Cheat_Sheet.html) and [Password Hashing Competition](https://www.password-hashing.net/). This PR is required for supporting argon2id in [External Secrets Operator](https://github.com/external-secrets/external-secrets) to generate secure passwords...
## Motivation To get list of items that match predicate from store requires using 'state' function first. This clones all elements instead of just filtered ones. ```rs store.state().into_iter().filter(predicate).collect::() ``` ##...