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
use crate::prelude::*;
use std::fmt;

/// Type representing the set of unsigned 64-bit integers.
#[derive(Debug, Clone, Copy)]
#[cfg_attr(feature = "serialize", derive(Serialize, Deserialize))]
pub struct Naturals;

impl Space for Naturals {
    const DIM: usize = 1;

    type Value = u64;

    fn card(&self) -> Card { Card::Infinite }

    fn contains(&self, _: &u64) -> bool { true }
}

impl OrderedSpace for Naturals {
    fn min(&self) -> Option<u64> { Some(0) }

    fn max(&self) -> Option<u64> { None }
}

impl_union_intersect!(Naturals, Naturals);

impl fmt::Display for Naturals {
    fn fmt(&self, f: &mut fmt::Formatter) -> fmt::Result {
        write!(f, "\u{2124}(≥0)")
    }
}

#[cfg(test)]
mod tests {
    use super::*;

    #[cfg(feature = "serialize")]
    extern crate serde_test;
    #[cfg(feature = "serialize")]
    use self::serde_test::{assert_tokens, Token};

    #[test]
    fn test_dim() {
        assert_eq!(Naturals::DIM, 1);
    }

    #[test]
    fn test_card() {
        let d = Naturals;

        assert_eq!(d.card(), Card::Infinite);
    }

    #[test]
    fn test_bounds() {
        let d = Naturals;

        assert_eq!(d.inf().unwrap(), 0);
        assert!(d.sup().is_none());

        assert!(d.contains(&0));
        assert!(d.contains(&1));
    }

    #[cfg(feature = "serialize")]
    #[test]
    fn test_serialisation() {
        let d = Naturals;

        assert_tokens(&d, &[Token::UnitStruct { name: "Naturals" }]);
    }
}