Josh Stone

Results 817 comments of Josh Stone

FWIW, on Fedora 21 searching the gdb source, they are not ordered even within a given path. For example, I'm getting results from `ChangeLog-2006`, then `ChangeLog-1999`, then `ChangeLog-2005`. (I should...

Ugh. This is difficult because the formatting implementation is more generic than just float-like `T`, so we don't have any methods like `is_sign_negative` to detect the difference between +/-0.0. We...

The `mod_floor` panics are consistent with Rust's `%` operator -- e.g. `i8::MIN % -1` also panics. > The following cases are caused by out of range result. I wonder if...

The question you'll have to answer for yourself is what to do with a Complex imaginary part. But if that's zero, you can use other conversions like `ToPrimitive` and `FromPrimitive`...

We had this in development with rust-num/num-bigint#136, but I ran into type inferences in issue rust-num/num-bigint#150, and reverted in rust-num/num-bigint#151. The inference issue is pretty nasty, because it even breaks...

There's nothing much preventing that if we do it without changes, but there's not much benefit either, only perception. It would also cause a lot of churn in the ecosystem...

FWIW, nightly `flatten` now fares a little better in that example. The `size_of` difference is still there, but it uses a specialized implementation, including a size hint as good as...

FWIW, #741 has a breaking change that could be included in a bump.

We were later able to relax `hashbrown` and `indexmap` to MSRV 1.63, so I've updated that here. Either way, this is well beyond `tower`'s stated 6-month MSRV policy.

> `ahash`, a dependency of v1 indexmap I'm not sure what you're seeing, but `indexmap` has never had a dependency on `ahash`. Even its `hashbrown` dependency has always been with...