Giovanni Ciatto

Results 33 comments of Giovanni Ciatto

Hi @fmuratori. I think the work in this PR is very good and I totally intend to merge it soon. There are a few edits I want to do before,...

Yeah combining IR- and legacy-compiled libraries is not supported. Long story short: I'm waiting for Kt `1.6.20` to be released as [this issue](https://youtrack.jetbrains.com/issue/KT-45434) (which is currently preventing me from switching...

I definitely didn't, and thank you for that BTW. The project started as an experiment to test the Kotlin Multiplatform feature, and ended up being the only way to support...

@danwallach can you provide the code of the benchmark you exploited to perform your performance assessment? I'm in the process of making `BigInteger` and `BigDecimal` interfaces, so that on the...

> Okay, this was a bunch of fun to put together. This repo carves out the benchmark aspect of a much larger thing I'm working on. This particular repo is...

However, I believe that attempting to optimize a generated code piece that was tailored on Java, may not be the best strategy. The purpose of `kt-math` was to provide a...

Hi @saschpe. I am greatly interested in targetting other platforms, but I'm currently lacking the time to practice and gain expertise. So it would be great if you could: 1....

I totally agree on implementing these methods and I would be glad to accept PR on this. My only concern is about the [unsigned integer types](https://kotlinlang.org/docs/basic-types.html#unsigned-integers): as long as they...

Yes, overloads may be definitely an option. After I see how you plan to implement these methods I can perhaps say something intelligent about optimizations. BTW, `BigInteger` uses int arrays...

@MisterAssm I should have added for factories on the interfaces to address your issue. Is that ok for you?