auto merge of #19348 : SimonSapin/rust/patch-9, r=huonw
This commit is contained in:
commit
82fc1aa875
1 changed files with 3 additions and 3 deletions
|
@ -81,7 +81,7 @@ pub fn from_u32(i: u32) -> Option<char> {
|
||||||
///
|
///
|
||||||
/// Checks if a `char` parses as a numeric digit in the given radix
|
/// Checks if a `char` parses as a numeric digit in the given radix
|
||||||
///
|
///
|
||||||
/// Compared to `is_digit()`, this function only recognizes the
|
/// Compared to `is_numeric()`, this function only recognizes the
|
||||||
/// characters `0-9`, `a-z` and `A-Z`.
|
/// characters `0-9`, `a-z` and `A-Z`.
|
||||||
///
|
///
|
||||||
/// # Return value
|
/// # Return value
|
||||||
|
@ -201,7 +201,7 @@ pub fn len_utf8_bytes(c: char) -> uint {
|
||||||
pub trait Char {
|
pub trait Char {
|
||||||
/// Checks if a `char` parses as a numeric digit in the given radix.
|
/// Checks if a `char` parses as a numeric digit in the given radix.
|
||||||
///
|
///
|
||||||
/// Compared to `is_digit()`, this function only recognizes the characters
|
/// Compared to `is_numeric()`, this function only recognizes the characters
|
||||||
/// `0-9`, `a-z` and `A-Z`.
|
/// `0-9`, `a-z` and `A-Z`.
|
||||||
///
|
///
|
||||||
/// # Return value
|
/// # Return value
|
||||||
|
@ -217,7 +217,7 @@ pub trait Char {
|
||||||
|
|
||||||
/// Checks if a `char` parses as a numeric digit in the given radix.
|
/// Checks if a `char` parses as a numeric digit in the given radix.
|
||||||
///
|
///
|
||||||
/// Compared to `is_digit()`, this function only recognizes the characters
|
/// Compared to `is_numeric()`, this function only recognizes the characters
|
||||||
/// `0-9`, `a-z` and `A-Z`.
|
/// `0-9`, `a-z` and `A-Z`.
|
||||||
///
|
///
|
||||||
/// # Return value
|
/// # Return value
|
||||||
|
|
Loading…
Add table
Add a link
Reference in a new issue