Added examples for parse_bytes(buf: &[u8], radix: uint) in int_macros.rs and uint_macros.rs

This commit is contained in:
Jacob Hegna 2014-04-22 19:38:27 -05:00
parent 09bfb92fdc
commit f197e695ca
2 changed files with 20 additions and 0 deletions

View file

@ -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::from_str_radix(foo, 10);
/// ```
#[inline]
pub fn parse_bytes(buf: &[u8], radix: uint) -> Option<$T> {
strconv::from_str_bytes_common(buf, radix, true, false, false,

View file

@ -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,