1 2 3 4 5 6 7 8 9 10 11 12 13
//! # RifParser - check_methods Methods //! //! This module contains method implementations for `RifParser`. //! //! 🤖 Generated with [SplitRS](https://github.com/cool-japan/splitrs) use super::rifparser_type::RifParser; impl RifParser { pub(super) fn check_eof(&self) -> bool { self.pos >= self.input.len() } }