Skip to content

Commit 088d52d

Browse files
committed
Implement fmt::Debug for Captures (fix rust-lang#160)
1 parent aae73b0 commit 088d52d

File tree

1 file changed

+15
-0
lines changed

1 file changed

+15
-0
lines changed

src/re.rs

+15
Original file line numberDiff line numberDiff line change
@@ -980,6 +980,21 @@ impl<'t> Index<&'t str> for Captures<'t> {
980980

981981
}
982982

983+
impl<'t> fmt::Debug for Captures<'t> {
984+
fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
985+
try!(writeln!(f, "Captures of {}:", self.text));
986+
for i in 0..self.locs.len() {
987+
try!(writeln!(f, "{}:\t{:?}", i, self.at(i)));
988+
}
989+
if let Some(ref h) = self.named {
990+
for (n, i) in h.iter() {
991+
try!(writeln!(f, "{}:\t{:?}", n, self.at(*i)));
992+
}
993+
}
994+
Ok(())
995+
}
996+
}
997+
983998
/// An iterator over capture groups for a particular match of a regular
984999
/// expression.
9851000
///

0 commit comments

Comments
 (0)