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
use crate::{Atomize, DeepReveal, IsBot, IsTop, LatticeFrom, LatticeOrd, Merge};

impl DeepReveal for () {
    type Revealed = ();

    fn deep_reveal(self) -> Self::Revealed {
        self
    }
}

impl Merge<Self> for () {
    fn merge(&mut self, _other: Self) -> bool {
        false
    }
}

impl LatticeOrd for () {}

impl LatticeFrom<Self> for () {
    fn lattice_from(other: Self) -> Self {
        other
    }
}

impl IsBot for () {
    fn is_bot(&self) -> bool {
        true
    }
}

impl IsTop for () {
    fn is_top(&self) -> bool {
        true
    }
}

impl Atomize for () {
    type Atom = Self;

    type AtomIter = std::iter::Empty<Self>;

    fn atomize(self) -> Self::AtomIter {
        std::iter::empty()
    }
}