From 0bfcfcffa7afae00e2371c9e92fae5558ec24c26 Mon Sep 17 00:00:00 2001 From: Jason Thompson Date: Mon, 30 Jun 2014 06:38:47 -0400 Subject: [PATCH] add example for from_byte() documenation --- src/libcollections/str.rs | 8 ++++++++ 1 file changed, 8 insertions(+) diff --git a/src/libcollections/str.rs b/src/libcollections/str.rs index b5424d1683f..024e8f0f8ee 100644 --- a/src/libcollections/str.rs +++ b/src/libcollections/str.rs @@ -106,6 +106,14 @@ pub fn from_utf8_owned(vv: Vec) -> Result> { /// # Failure /// /// Fails if invalid UTF-8 +/// +/// # Example +/// +/// ```rust +/// use std::str; +/// let string = str::from_byte(66u8); +/// assert_eq!(string.as_slice(), "B"); +/// ``` pub fn from_byte(b: u8) -> String { assert!(b < 128u8); String::from_char(1, b as char)