You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
On 2022-05-28 @recmo wrote in 1ec2e50 “Recognize new tags”:
Support proper unicode. Ignore zero-width spaces, joiners, etc.
Recognize digits from other alphabets.
/// # Errors////// * [`ParseError::InvalidDigit`] if the string contains a non-digit./// * [`ParseError::InvalidRadix`] if the radix is larger than 64./// * [`ParseError::BaseConvertError`] if [`Uint::from_base_be`] fails.// FEATURE: Support proper unicode. Ignore zero-width spaces, joiners, etc.// Recognize digits from other alphabets.pubfn from_str_radix(src:&str,radix:u64) -> Result<Self,ParseError>{if radix > 64{returnErr(ParseError::InvalidRadix(radix));}letmut err = None;
On 2022-05-28 @recmo wrote in
1ec2e50
“Recognize new tags”:Support proper unicode. Ignore zero-width spaces, joiners, etc.
Recognize digits from other alphabets.
From
src/string.rs:118
The text was updated successfully, but these errors were encountered: