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
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
This method will be deprecated in favor of the identically-named inherent methods on u8, char, [u8] and str.
But we decided not to carry is_ascii_hexdigit to methods on [u8] and str as discussed in #39658 (comment).
The deprecated methods that are not provided for [u8] and str should instead say something like:
This method will be deprecated in favor of the identically-named inherent methods on u8 and char. For [u8] use .iter().all(u8::is_ascii_hexdigit). For str use .bytes().all(|b| b.is_ascii_hexdigit()).
The text was updated successfully, but these errors were encountered:
varkor
added
E-easy
Call for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
A-docs
Area: Documentation for any part of the project, including the compiler, standard library, and tools
labels
Jul 6, 2018
A-docsArea: Documentation for any part of the project, including the compiler, standard library, and toolsE-easyCall for participation: Easy difficulty. Experience needed to fix: Not much. Good first issue.
For example
AsciiExt::is_ascii_hexdigit
says:But we decided not to carry
is_ascii_hexdigit
to methods on[u8]
andstr
as discussed in #39658 (comment).The deprecated methods that are not provided for
[u8]
andstr
should instead say something like:The text was updated successfully, but these errors were encountered: