Re: [PATCH v4 3/4] rust: str: add radix prefixed integer parsing functions

2025-02-04 Thread Andreas Hindborg
Hi Gary, Sorry, I missed this email when sending v5. Thanks for the comments! "Gary Guo" writes: > On Thu, 09 Jan 2025 11:54:58 +0100 > Andreas Hindborg wrote: > >> Add the trait `ParseInt` for parsing string representations of integers >> where the string representations are optionally prefix

Re: [PATCH v4 3/4] rust: str: add radix prefixed integer parsing functions

2025-01-15 Thread Gary Guo
On Thu, 09 Jan 2025 11:54:58 +0100 Andreas Hindborg wrote: > Add the trait `ParseInt` for parsing string representations of integers > where the string representations are optionally prefixed by a radix > specifier. Implement the trait for the primitive integer types. > > Signed-off-by: Andreas

[PATCH v4 3/4] rust: str: add radix prefixed integer parsing functions

2025-01-09 Thread Andreas Hindborg
Add the trait `ParseInt` for parsing string representations of integers where the string representations are optionally prefixed by a radix specifier. Implement the trait for the primitive integer types. Signed-off-by: Andreas Hindborg --- rust/kernel/str.rs | 118 +++