Skip to content

Commit d44257d

Browse files
committed
---
yaml --- r: 140729 b: refs/heads/try2 c: b8d0ebe h: refs/heads/master i: 140727: 71e6a24 v: v3
1 parent be3c59d commit d44257d

File tree

2 files changed

+10
-7
lines changed

2 files changed

+10
-7
lines changed

[refs]

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ refs/heads/snap-stage3: 78a7676898d9f80ab540c6df5d4c9ce35bb50463
55
refs/heads/try: 519addf6277dbafccbb4159db4b710c37eaa2ec5
66
refs/tags/release-0.1: 1f5c5126e96c79d22cb7862f75304136e204f105
77
refs/heads/ndm: f3868061cd7988080c30d6d5bf352a5a5fe2460b
8-
refs/heads/try2: 3c1e78788423f6036d370c4ea37718f3494868e7
8+
refs/heads/try2: b8d0ebe124a574a55d9df7daf2b704802443aa2c
99
refs/heads/dist-snap: ba4081a5a8573875fed17545846f6f6902c8ba8d
1010
refs/tags/release-0.2: c870d2dffb391e14efb05aa27898f1f6333a9596
1111
refs/tags/release-0.3: b5f0d0f648d9a6153664837026ba1be43d3e2503

branches/try2/src/libcore/to_str.rs

Lines changed: 9 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -15,7 +15,9 @@ The `ToStr` trait for converting to strings
1515
*/
1616

1717
use str;
18+
use str::OwnedStr;
1819
use hashmap::HashMap;
20+
use hashmap::HashSet;
1921
use container::Map;
2022
use hash::Hash;
2123
use cmp::Eq;
@@ -59,13 +61,13 @@ impl<A:ToStr+Hash+Eq, B:ToStr+Hash+Eq> ToStr for HashMap<A, B> {
5961
first = false;
6062
}
6163
else {
62-
str::push_str(&mut acc, ~", ");
64+
acc.push_str(", ");
6365
}
64-
str::push_str(&mut acc, key.to_str());
65-
str::push_str(&mut acc, ~" : ");
66-
str::push_str(&mut acc, value.to_str());
66+
acc.push_str(key.to_str());
67+
acc.push_str(": ");
68+
acc.push_str(value.to_str());
6769
}
68-
str::push_char(&mut acc, '}');
70+
acc.push_char('}');
6971
acc
7072
}
7173
}
@@ -82,6 +84,7 @@ impl<A:ToStr,B:ToStr> ToStr for (A, B) {
8284
}
8385
}
8486
}
87+
8588
impl<A:ToStr,B:ToStr,C:ToStr> ToStr for (A, B, C) {
8689
#[inline(always)]
8790
fn to_str(&self) -> ~str {
@@ -185,7 +188,7 @@ mod tests {
185188
186189
let table_str = table.to_str();
187190
188-
assert!(table_str == ~"{1 : 2, 3 : 4}" || table_str == ~"{3 : 4, 1 : 2}");
191+
assert!(table_str == ~"{1: 2, 3: 4}" || table_str == ~"{3: 4, 1: 2}");
189192
assert!(empty.to_str() == ~"{}");
190193
}
191194
}

0 commit comments

Comments
 (0)