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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
use std::{fmt::Debug, marker::PhantomData};

use super::Neu;

///
/// Return true if the given value not matches `U`.
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> color_eyre::Result<()> {
/// #     color_eyre::install()?;
///     let not_digit = neu::digit(10).not().repeat::<1, 3>();
///     let mut ctx = CharsCtx::new("cc9");
///
///     assert_eq!(ctx.try_mat(&not_digit)?, Span::new(0, 2));
///
///     let not_digit = re!((neu::digit(10).not()){1,3});
///     let mut ctx = CharsCtx::new("c99");
///
///     assert_eq!(ctx.try_mat(&not_digit)?, Span::new(0, 1));
///
///     Ok(())
/// # }
/// ```
#[derive(Default, Copy)]
pub struct Not<U, T>
where
    U: Neu<T>,
{
    unit: U,
    marker: PhantomData<T>,
}

impl<U, T> Debug for Not<U, T>
where
    U: Neu<T> + Debug,
{
    fn fmt(&self, f: &mut std::fmt::Formatter<'_>) -> std::fmt::Result {
        f.debug_struct("Not").field("unit", &self.unit).finish()
    }
}

impl<U, T> Clone for Not<U, T>
where
    U: Neu<T> + Clone,
{
    fn clone(&self) -> Self {
        Self {
            unit: self.unit.clone(),
            marker: self.marker,
        }
    }
}

impl<U, T> Not<U, T>
where
    U: Neu<T>,
{
    pub fn new(unit: U) -> Self {
        Self {
            unit,
            marker: PhantomData,
        }
    }

    pub fn unit(&self) -> &U {
        &self.unit
    }

    pub fn unit_mut(&mut self) -> &mut U {
        &mut self.unit
    }

    pub fn set_unit(&mut self, unit: U) -> &mut Self {
        self.unit = unit;
        self
    }
}

impl<U, T> Neu<T> for Not<U, T>
where
    U: Neu<T>,
{
    #[inline(always)]
    fn is_match(&self, other: &T) -> bool {
        let ret = !self.unit.is_match(other);

        crate::trace_log!("neu logical `not` -> {ret}");
        ret
    }
}

///
/// Return true if the given value not matches `U`.
///
/// # Example
///
/// ```
/// # use neure::prelude::*;
/// #
/// # fn main() -> color_eyre::Result<()> {
/// #     color_eyre::install()?;
///     let item = neu::not(u8::is_ascii_uppercase);
///     let str = item.repeat_range(6..);
///     let mut ctx = BytesCtx::new(br#"abcedfgABCEE"#);
///
///     assert_eq!(ctx.try_mat(&str)?, Span::new(0, 7));
///     Ok(())
/// # }
/// ```
pub fn not<T, U: Neu<T>>(unit: U) -> Not<U, T> {
    Not::new(unit)
}