Convert Result to Option in parse_bytes.
`str::from_utf8` changed its return type to `Result`, but `num::FromStrRadix::from_str_radix` still returns an `Option`. In this case discarding the `Err` variant with `ok()` seems fine to me.
This commit is contained in:
parent
f95afeb57e
commit
22c50901ff
|
@ -851,7 +851,7 @@ impl BigUint {
|
||||||
/// Creates and initializes a `BigUint`.
|
/// Creates and initializes a `BigUint`.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<BigUint> {
|
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<BigUint> {
|
||||||
str::from_utf8(buf).and_then(|s| FromStrRadix::from_str_radix(s, radix))
|
str::from_utf8(buf).ok().and_then(|s| FromStrRadix::from_str_radix(s, radix))
|
||||||
}
|
}
|
||||||
|
|
||||||
#[inline]
|
#[inline]
|
||||||
|
@ -1535,7 +1535,7 @@ impl BigInt {
|
||||||
/// Creates and initializes a `BigInt`.
|
/// Creates and initializes a `BigInt`.
|
||||||
#[inline]
|
#[inline]
|
||||||
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<BigInt> {
|
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<BigInt> {
|
||||||
str::from_utf8(buf).and_then(|s| FromStrRadix::from_str_radix(s, radix))
|
str::from_utf8(buf).ok().and_then(|s| FromStrRadix::from_str_radix(s, radix))
|
||||||
}
|
}
|
||||||
|
|
||||||
|
|
||||||
|
|
Loading…
Reference in New Issue