A wrapper for the stack types to print them better.
| 29 | |
| 30 | /// A wrapper for the stack types to print them better. |
| 31 | pub struct FmtStack(pub Stack); |
| 32 | impl fmt::Display for FmtStack { |
| 33 | fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result { |
| 34 | let mut iter = self.0.iter_str().enumerate().peekable(); |
no outgoing calls
no test coverage detected