oxilean_parse/command/commandparser_position_group.rs
1//! # CommandParser - position_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 /// Get the current position.
11 pub fn position(&self) -> usize {
12 self.pos
13 }
14}