Considering Big Numbers.
@Iaroslav Postovalov made some benchmarks for kmath BigInt implemented by Robert Drynkin and
@Peter Klimai, JDK BigInt and
https://github.com/ionspin/kotlin-multiplatform-bignum by
@Ugi. It seems that our implementation is even a bit faster than JDK and much faster (two times) than the one by
@Ugi. I intended to drop our implementation in favor of extenral library, but now it does not make sense to do that. Kmath relies on a tiny fraction of BigInt functionality and we do not intend to support the whole spectrum of fetures, so I am not sure what to do next. Should we maintain two separate multiplatform bigint implementations (one for special features and one for Algebra compatibility or try to improve
@Ugi implementation?