-
Notifications
You must be signed in to change notification settings - Fork 13k
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Provides a central iface for the various stringification functions.
- Loading branch information
Showing
2 changed files
with
96 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,91 @@ | ||
iface to_str { fn to_str() -> str; } | ||
|
||
impl of to_str for int { | ||
fn to_str() -> str { int::str(self) } | ||
} | ||
impl of to_str for uint { | ||
fn to_str() -> str { uint::str(self) } | ||
} | ||
impl of to_str for u8 { | ||
fn to_str() -> str { uint::str(self as uint) } | ||
} | ||
impl of to_str for float { | ||
fn to_str() -> str { float::to_str(self, 4u) } | ||
} | ||
impl of to_str for bool { | ||
fn to_str() -> str { bool::to_str(self) } | ||
} | ||
impl of to_str for () { | ||
fn to_str() -> str { "()" } | ||
} | ||
impl of to_str for str { | ||
fn to_str() -> str { self } | ||
} | ||
|
||
impl <A: to_str copy, B: to_str copy> of to_str for (A, B) { | ||
fn to_str() -> str { | ||
let (a, b) = self; | ||
"(" + a.to_str() + ", " + b.to_str() + ")" | ||
} | ||
} | ||
impl <A: to_str copy, B: to_str copy, C: to_str copy> of to_str for (A, B, C){ | ||
fn to_str() -> str { | ||
let (a, b, c) = self; | ||
"(" + a.to_str() + ", " + b.to_str() + ", " + c.to_str() + ")" | ||
} | ||
} | ||
|
||
impl <A: to_str> of to_str for [A] { | ||
fn to_str() -> str { | ||
let acc = "[", first = true; | ||
for elt in self { | ||
if first { first = false; } | ||
else { acc += ", "; } | ||
acc += elt.to_str(); | ||
} | ||
acc += "]"; | ||
acc | ||
} | ||
} | ||
|
||
impl <A: to_str> of to_str for @A { | ||
fn to_str() -> str { "@" + (*self).to_str() } | ||
} | ||
impl <A: to_str> of to_str for ~A { | ||
fn to_str() -> str { "~" + (*self).to_str() } | ||
} | ||
|
||
#[cfg(test)] | ||
mod tests { | ||
#[test] | ||
fn test_simple_types() { | ||
assert 1.to_str() == "1"; | ||
assert (-1).to_str() == "-1"; | ||
assert 200u.to_str() == "200"; | ||
assert 2u8.to_str() == "2"; | ||
assert true.to_str() == "true"; | ||
assert false.to_str() == "false"; | ||
assert ().to_str() == "()"; | ||
assert "hi".to_str() == "hi"; | ||
} | ||
|
||
#[test] | ||
fn test_tuple_types() { | ||
assert (1, 2).to_str() == "(1, 2)"; | ||
assert ("a", "b", false).to_str() == "(a, b, false)"; | ||
assert ((), ((), 100)).to_str() == "((), ((), 100))"; | ||
} | ||
|
||
fn test_vectors() { | ||
let x: [int] = []; | ||
assert x.to_str() == "[]"; | ||
assert [1].to_str() == "[1]"; | ||
assert [1, 2, 3].to_str() == "[1, 2, 3]"; | ||
assert [[], [1], [1, 1]].to_str() == "[[], [1], [1, 1]]"; | ||
} | ||
|
||
fn test_pointer_types() { | ||
assert (@1).to_str() == "@1"; | ||
assert (~(true, false)).to_str() == "~(true, false)"; | ||
} | ||
} |