Skip to content

Commit

Permalink
auto merge of rust-lang#13694 : jacob-hegna/rust/master, r=brson
Browse files Browse the repository at this point in the history
... and uint_macros.rs
  • Loading branch information
bors committed Apr 23, 2014
2 parents e049a70 + a14c34d commit bb580f1
Show file tree
Hide file tree
Showing 2 changed files with 20 additions and 0 deletions.
10 changes: 10 additions & 0 deletions src/libstd/num/int_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -235,6 +235,16 @@ impl Primitive for $T {}
// String conversion functions and impl str -> num

/// Parse a byte slice as a number in the given base.
///
/// Yields an `Option` because `buf` may or may not actually be parseable.
///
/// # Examples
///
/// ```rust
/// let digits = [49,50,51,52,53,54,55,56,57];
/// let base = 10;
/// let num = std::i64::parse_bytes(digits, base);
/// ```
#[inline]
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {
strconv::from_str_bytes_common(buf, radix, true, false, false,
Expand Down
10 changes: 10 additions & 0 deletions src/libstd/num/uint_macros.rs
Original file line number Diff line number Diff line change
Expand Up @@ -149,6 +149,16 @@ impl Int for $T {}
// String conversion functions and impl str -> num

/// Parse a byte slice as a number in the given base.
///
/// Yields an `Option` because `buf` may or may not actually be parseable.
///
/// # Examples
///
/// ```rust
/// let digits = [49,50,51,52,53,54,55,56,57];
/// let base = 10;
/// let num = std::i64::parse_bytes(digits, base);
/// ```
#[inline]
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {
strconv::from_str_bytes_common(buf, radix, false, false, false,
Expand Down

0 comments on commit bb580f1

Please sign in to comment.