extremeandy
extremeandy
Please link to https://github.com/i3arnon/ConcurrentHashSet/issues/14
I often use `ConcurrentDictionary` as a way to force a single instance of a reference typed object. e.g. ```csharp var dict = new ConcurrentDictionary(); var item1 = new MyClass(); var...
### Issue description In my project, we have a need to ensure instant availability of open Snowflake connections: 1. We want to make sure that when someone hits our APIs,...
I found I needed this method or I was forced to clone the key in the closure passed to `or_insert_with`
This test is failing when I try on aarch64 or x86_64 targets. Is this left intentionally broken, or otherwise? 🤔 I'm currently investigating what's available in Rust for black scholes....
This is more of a question than an issue right now, but may have want some action depending on the answer to the question. I noticed in the implementation `impl...
Would like to see support for dividend yield as per e.g. https://www.macroption.com/black-scholes-formula/ Personally I wouldn't mind it being a breaking change on a new major version having the new parameter...
It appears the `round_sf_with_strategy` does not do appropriate checking on scale and can return invalid values. Example: ```rust let value = Decimal::new(1, 20) .round_sf_with_strategy(12, RoundingStrategy::MidpointAwayFromZero) .unwrap(); assert!(value.scale()
Would you be open to an MR adding a new method `read_with_seq` which returns the current value of seq (i.e. `seq1` which was loaded and compared with `seq2`)? I'd like...