diff options
| author | Kevin Ballard <kevin@sb.org> | 2014-05-28 20:45:44 -0700 | 
|---|---|---|
| committer | Kevin Ballard <kevin@sb.org> | 2014-05-28 21:31:19 -0700 | 
| commit | eb98c9eeaa6d1054c4d27611a3cf2d26b0708705 (patch) | |
| tree | 03c8bb992bdd40223de8e03462e7900eaf8023fd /src/libstd/str.rs | |
| parent | 812785e01aef46b0c62bfc02080f8fcc13f01a4c (diff) | |
| download | rust-eb98c9eeaa6d1054c4d27611a3cf2d26b0708705.tar.gz rust-eb98c9eeaa6d1054c4d27611a3cf2d26b0708705.zip | |
Replace StrAllocating.into_owned() with .into_string()
We already have into_string(), but it was implemented in terms of into_owned(). Flip it around and deprecate into_owned(). Remove a few spurious calls to .into_owned() that existed in libregex and librustdoc.
Diffstat (limited to 'src/libstd/str.rs')
| -rw-r--r-- | src/libstd/str.rs | 32 | 
1 files changed, 16 insertions, 16 deletions
| diff --git a/src/libstd/str.rs b/src/libstd/str.rs index eb97f0f6a28..9a6e3a9dca2 100644 --- a/src/libstd/str.rs +++ b/src/libstd/str.rs @@ -79,7 +79,7 @@ use mem; use option::{None, Option, Some}; use result::Result; use slice::Vector; -use slice::{ImmutableVector, MutableVector, CloneableVector}; +use slice::{ImmutableVector, MutableVector}; use string::String; use vec::Vec; @@ -503,7 +503,7 @@ pub fn from_utf8_lossy<'a>(v: &'a [u8]) -> MaybeOwned<'a> { res.push_bytes(v.slice(subseqidx, total)) }; } - Owned(res.into_owned()) + Owned(res.into_string()) } /* @@ -608,7 +608,7 @@ impl<'a> Str for MaybeOwned<'a> { impl<'a> StrAllocating for MaybeOwned<'a> { #[inline] - fn into_owned(self) -> String { + fn into_string(self) -> String { match self { Slice(s) => s.to_string(), Owned(s) => s @@ -723,7 +723,7 @@ Section: Trait implementations /// Any string that can be represented as a slice pub trait StrAllocating: Str { /// Convert `self` into a `String`, not making a copy if possible. - fn into_owned(self) -> String; + fn into_string(self) -> String; /// Convert `self` into a `String`. #[inline] @@ -731,10 +731,10 @@ pub trait StrAllocating: Str { String::from_str(self.as_slice()) } - /// Convert `self` into a `String`, not making a copy if possible. - #[inline] - fn into_string(self) -> String { - self.into_owned() + #[allow(missing_doc)] + #[deprecated = "replaced by .into_string()"] + fn into_owned(self) -> String { + self.into_string() } /// Escape each char in `s` with `char::escape_default`. @@ -889,7 +889,7 @@ pub trait StrAllocating: Str { impl<'a> StrAllocating for &'a str { #[inline] - fn into_owned(self) -> String { + fn into_string(self) -> String { self.to_string() } } @@ -1045,7 +1045,7 @@ mod tests { #[test] fn test_concat() { fn t(v: &[String], s: &str) { - assert_eq!(v.concat(), s.to_str().into_owned()); + assert_eq!(v.concat(), s.to_str().into_string()); } t(["you".to_string(), "know".to_string(), "I'm".to_string(), "no".to_string(), "good".to_string()], "youknowI'mnogood"); @@ -1057,7 +1057,7 @@ mod tests { #[test] fn test_connect() { fn t(v: &[String], sep: &str, s: &str) { - assert_eq!(v.connect(sep), s.to_str().into_owned()); + assert_eq!(v.connect(sep), s.to_str().into_string()); } t(["you".to_string(), "know".to_string(), "I'm".to_string(), "no".to_string(), "good".to_string()], @@ -1070,7 +1070,7 @@ mod tests { #[test] fn test_concat_slices() { fn t(v: &[&str], s: &str) { - assert_eq!(v.concat(), s.to_str().into_owned()); + assert_eq!(v.concat(), s.to_str().into_string()); } t(["you", "know", "I'm", "no", "good"], "youknowI'mnogood"); let v: &[&str] = []; @@ -1081,7 +1081,7 @@ mod tests { #[test] fn test_connect_slices() { fn t(v: &[&str], sep: &str, s: &str) { - assert_eq!(v.connect(sep), s.to_str().into_owned()); + assert_eq!(v.connect(sep), s.to_str().into_string()); } t(["you", "know", "I'm", "no", "good"], " ", "you know I'm no good"); @@ -2162,9 +2162,9 @@ mod tests { } #[test] - fn test_maybe_owned_into_owned() { - assert_eq!(Slice("abcde").into_owned(), "abcde".to_string()); - assert_eq!(Owned("abcde".to_string()).into_owned(), "abcde".to_string()); + fn test_maybe_owned_into_string() { + assert_eq!(Slice("abcde").into_string(), "abcde".to_string()); + assert_eq!(Owned("abcde".to_string()).into_string(), "abcde".to_string()); } #[test] | 
