Re: [PATCH v7 5/6] rust: str: add radix prefixed integer parsing functions
From: Miguel Ojeda
Date: Mon Feb 24 2025 - 20:52:05 EST
On Mon, Feb 24, 2025 at 11:30 PM Janne Grunau <j@xxxxxxxxxx> wrote:
>
> The errors go away after exchanging i128 with i64 (while breaking the
> parsing for large values).
I don't think we can use 128-bit integers unconditionally for all
architectures (we could eventually get it to work for some though). So
we should do one of the other approaches discussed in the previous
versions, like call into the C one.
Cheers,
Miguel