oxilean_parse/command/commandparser_reset_group.rs
1//! # CommandParser - reset_group Methods
2//!
3//! This module contains method implementations for `CommandParser`.
4//!
5//! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs)
6
7use super::commandparser_type::CommandParser;
8
9impl CommandParser {
10 /// Reset the parser.
11 pub fn reset(&mut self) {
12 self.pos = 0;
13 self.tokens.clear();
14 }
15}