Created
August 10, 2018 09:37
-
-
Save adrianparvino/0fa8eca198eb6f9b4b0317fd22f391d4 to your computer and use it in GitHub Desktop.
This file contains hidden or 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
pub fn toString(&self) -> String { | |
self.up.push(& self.cur); | |
self.up.extend(self.down.into_iter()); | |
self.up.join("\n") | |
} |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment