mirror of
				https://github.com/rust-lang/rust.git
				synced 2025-11-03 22:49:17 +00:00 
			
		
		
		
	
		
			
				
	
	
		
			24 lines
		
	
	
		
			392 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
			
		
		
	
	
			24 lines
		
	
	
		
			392 B
		
	
	
	
		
			Rust
		
	
	
	
	
	
//@ check-pass
 | 
						|
 | 
						|
struct CNFParser {
 | 
						|
    token: char,
 | 
						|
}
 | 
						|
 | 
						|
impl CNFParser {
 | 
						|
    fn is_whitespace(c: char) -> bool {
 | 
						|
        c == ' ' || c == '\n'
 | 
						|
    }
 | 
						|
 | 
						|
    fn consume_whitespace(&mut self) {
 | 
						|
        self.consume_while(&(CNFParser::is_whitespace))
 | 
						|
    }
 | 
						|
 | 
						|
    fn consume_while(&mut self, p: &dyn Fn(char) -> bool) {
 | 
						|
        while p(self.token) {
 | 
						|
            return
 | 
						|
        }
 | 
						|
    }
 | 
						|
}
 | 
						|
 | 
						|
fn main() {}
 |