Simplified function registration to not require explicit coercion step. Simplified eval to take &str instead of String

This commit is contained in:
jonathandturner
2016-03-16 18:07:08 -04:00
parent 6950219251
commit 254f4b081c
9 changed files with 143 additions and 116 deletions

View File

@@ -322,7 +322,7 @@ impl<'a> Iterator for TokenIterator<'a> {
}
}
pub fn lex<'a>(input: &'a String) -> TokenIterator<'a> {
pub fn lex<'a>(input: &'a str) -> TokenIterator<'a> {
TokenIterator { char_stream: input.chars().peekable() }
}