1
 2
 3
 4
 5
 6
 7
 8
 9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
use crate::Feed;
use crate::Consumer;
use crate::Result;

#[derive(Clone, Debug)]
/// Consumes a single token built from a `char` predicate.
pub struct Peek<F : Fn(char) -> bool>(F);


impl<F : Fn(char) -> bool> Peek<F> {
    
	pub fn new(function: F) -> Self {
		
		Self(function)

	}

}

impl<F : Fn(char) -> bool> Feed for Peek<F> {

	fn feed(&mut self, consumer: &mut Consumer) -> Result {
		
		let string: String = 
			consumer.remainder().chars().take_while(
				|character|
					self.0(*character)).collect();

		let ref mut str = string.as_str();

		consumer.consume(str)
		
	}

}

/// Defines a type that solely parses with `Peek`.
///
/// # Example
///
/// ```
/// # use yarpl::peek;
/// peek!(Letters : char::is_alphabetic);
/// ```
/// 
#[macro_export]
macro_rules! peek {

	($Type:ident : $peeker: expr) => {

		#[derive(Clone, Copy, Default, PartialEq, Debug)]
		pub struct $Type;

		impl $crate::Feed for $Type {

			fn feed(&mut self, consumer: &mut $crate::Consumer) -> $crate::Result {

				let ref mut peeker = $crate::Peek::new($peeker);
				
				consumer.consume(peeker)?;

				Ok(())

			}

		}

	}

}