(&self)
| 23 | } |
| 24 | |
| 25 | pub(crate) fn peek(&self) -> Option<&str> { |
| 26 | self.args.get(self.index).map(String::as_str) |
| 27 | } |
| 28 | |
| 29 | pub(crate) fn next(&mut self) -> Option<String> { |
| 30 | let value = self.args.get(self.index)?.clone(); |
no outgoing calls
no test coverage detected