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
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
use core::ops::{Add, Index, IndexMut, Sub};

use crate::{Cons, HList};

use super::{Dec, Here, Index as Idx, There};

impl<T> Add<T> for Here
where
    T: Idx,
{
    type Output = T;

    fn add(self, rhs: T) -> Self::Output {
        rhs
    }
}

impl<T, U> Add<T> for There<U>
where
    U: Idx + Add<T>,
    U::Output: Idx,
{
    type Output = There<U::Output>;

    fn add(self, _: T) -> Self::Output {
        There::new()
    }
}

impl Sub<Here> for Here {
    type Output = Here;

    fn sub(self, rhs: Here) -> Self::Output {
        rhs
    }
}

impl<T> Sub<Here> for There<T>
where
    T: Idx,
{
    type Output = There<T>;

    fn sub(self, _: Here) -> Self::Output {
        There::new()
    }
}

impl<T, U> Sub<There<T>> for There<U>
where
    T: Idx,
    U: Idx + Sub<T>,
{
    type Output = U::Output;

    fn sub(self, rhs: There<T>) -> Self::Output {
        self.dec() - rhs.dec()
    }
}

impl<T> PartialEq<There<T>> for Here
where
    T: Idx,
{
    fn eq(&self, _: &There<T>) -> bool {
        false
    }
}

impl<T> PartialEq<Here> for There<T>
where
    T: Idx,
{
    fn eq(&self, _: &Here) -> bool {
        false
    }
}

impl<T, U> PartialEq<There<T>> for There<U>
where
    T: Idx,
    U: Idx + PartialEq<T>,
{
    fn eq(&self, other: &There<T>) -> bool {
        self.dec() == other.dec()
    }
}

impl<T> PartialOrd<There<T>> for Here
where
    T: Idx,
{
    fn partial_cmp(&self, _: &There<T>) -> Option<core::cmp::Ordering> {
        Some(core::cmp::Ordering::Less)
    }
}

impl<T> PartialOrd<Here> for There<T>
where
    T: Idx,
{
    fn partial_cmp(&self, _: &Here) -> Option<core::cmp::Ordering> {
        Some(core::cmp::Ordering::Greater)
    }
}

impl<T, U> PartialOrd<There<T>> for There<U>
where
    T: Idx,
    U: Idx + PartialOrd<T>,
{
    fn partial_cmp(&self, other: &There<T>) -> Option<core::cmp::Ordering> {
        let this = self.dec();
        let other = other.dec();
        this.partial_cmp(&other)
    }
}

/// Retrieves the first element of the heterogenous list in immutable contexts.
///
/// # Examples
///
/// ```
/// use hlist2::{hlist, ops::Here};
///
/// let list = hlist![1, 2.0, false];
/// let a = list[Here];
/// assert_eq!(a, 1);
/// ```
impl<Head, Tail> Index<Here> for Cons<Head, Tail>
where
    Tail: HList + ?Sized,
{
    type Output = Head;

    fn index(&self, _: Here) -> &Self::Output {
        let Cons(head, _) = self;
        head
    }
}

/// Retrieves the first element of the heterogenous list in mutable contexts.
///
/// # Examples
///
/// ```
/// use hlist2::{hlist, ops::Here};
///
/// let mut list = hlist![1, 2.0, false];
/// list[Here] = 5;
///
/// let a = list[Here];
/// assert_eq!(a, 5);
/// ```
impl<Head, Tail> IndexMut<Here> for Cons<Head, Tail>
where
    Tail: HList + ?Sized,
{
    fn index_mut(&mut self, _: Here) -> &mut Self::Output {
        let Cons(head, _) = self;
        head
    }
}

/// Performs indexing operation in the tail
/// of the heterogenous list in immutable contexts.
///
/// # Examples
///
/// ```
/// use hlist2::{hlist, ops::{Here, Inc}};
///
/// let list = hlist![1, 2.0, false];
///
/// let index = Here.inc();
/// assert_eq!(list[index], 2.0);
///
/// let index = index.inc();
/// assert_eq!(list[index], false);
/// ```
impl<Head, Tail, TailIndex> Index<There<TailIndex>> for Cons<Head, Tail>
where
    Tail: Index<TailIndex> + ?Sized,
    TailIndex: Idx,
{
    type Output = Tail::Output;

    fn index(&self, index: There<TailIndex>) -> &Self::Output {
        let Cons(_, tail) = self;
        let index = index.dec();
        tail.index(index)
    }
}

/// Performs indexing operation in the tail
/// of the heterogenous list in mutable contexts.
///
/// # Examples
///
/// ```
/// use hlist2::{hlist, ops::{Here, Inc}};
///
/// let mut list = hlist![1, 2.0, false];
///
/// let index = Here.inc();
/// list[index] = 16_f32.sqrt();
///
/// let b = list[index];
/// assert_eq!(b, 4.0);
/// ```
impl<Head, Tail, TailIndex> IndexMut<There<TailIndex>> for Cons<Head, Tail>
where
    Tail: IndexMut<TailIndex> + ?Sized,
    TailIndex: Idx,
{
    fn index_mut(&mut self, index: There<TailIndex>) -> &mut Self::Output {
        let Cons(_, tail) = self;
        let index = index.dec();
        tail.index_mut(index)
    }
}