Serge Latyntsev

Results 44 comments of Serge Latyntsev

Hi @Gip-Gip, thank you for your interest and your support! Regarding `pow`, I feel like we may consider falling back to num-rational [pow implementation](https://github.com/rust-num/num-rational/blob/master/src/lib.rs#L26). Fraction is built on top of...

Hi @henrikssn, thanks for bringing this up! Definitely a want-to-have feature for us. However, at this point, it's still _in the very early stage_ and most likely not gonna be...

Agree. Scheduling that for `0.7.0`.

I think there's no much we would gain from `Result::Err`, but to conform with Rust APIs we'll go for `Result`.

Actually, now I'm thinking, it could become `Result`

I've had a go at it and unfortunately, that's not going to be feasible until we get [specializations](https://github.com/rust-lang/rust/issues/31844) because of the core blanket trait implementations for TryFrom and TryInto. ```...

Hi folks. I implemented a `division` module (with 2 coroutines and `fn divide_to_string`) for my project and I could contribute it to this crate if you are to consider that....

Fair enough. @Hazardius that's your PR, do you feel like reworking it completely? Your call.

I've just found an issue in my code that could make overflows due to some corner cases, e.g. `Ratio(177, 253)`. I'll have to deal with it first.

Sorry @Hazardius, my implementation is too different so I made a separate PR. It's also Hacktoberfest going on, so I feel that a separate PR would be a fair thing...