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
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
//! Utilities for parsing types separated by punctuation.

use crate::token::Punct;
use crate::Parse;
use crate::ParseStream;
use crate::Result;

use std::slice;
use std::vec;

/// A series of pairs of `T` and `P`, optionally followed by another `T`.
#[derive(Debug, Clone)]
pub struct Punctuated<T, P: Punct> {
    pairs: Vec<(T, P)>,
    end: Option<T>,
}

impl<T, P: Punct> Punctuated<T, P> {
    const fn new() -> Punctuated<T, P> {
        Punctuated {
            pairs: vec![],
            end: None,
        }
    }

    fn push_value(&mut self, value: T) {
        self.end = Some(value);
    }

    fn push_punct(&mut self, punct: P) {
        let value = self.end.take().unwrap();
        self.pairs.push((value, punct));
    }

    /// Parses instances of `T` separated by instances of `P`, with no trailing
    /// punctuation.
    ///
    /// Note that this will stop as soon as it encounters a token that doesn't
    /// fit this pattern.
    ///
    /// ## Errors
    /// Forwards any errors from `T::parse`.
    pub fn parse_separated(input: ParseStream<'_>) -> Result<Self>
    where
        T: Parse,
    {
        Self::parse_separated_with(input, T::parse)
    }

    /// Parses instances of `T` using `f`, separated by instances of `P`, with
    /// no trailing punctuation.
    ///
    /// Note that this will stop as soon as it encounters a token that doesn't
    /// fit this pattern.
    ///
    /// ## Errors
    /// Forwards any errors from `f`.
    pub fn parse_separated_with<F: FnMut(ParseStream<'_>) -> Result<T>>(
        input: ParseStream<'_>,
        mut f: F,
    ) -> Result<Self> {
        let mut punctuated = Punctuated::new();
        punctuated.push_value(f(input)?);

        while P::peek(input) {
            punctuated.push_punct(input.parse()?);
            punctuated.push_value(f(input)?);
        }

        Ok(punctuated)
    }

    /// Parses instances of `T` separated by instances of `P`, with optional
    /// trailing punctuation.
    ///
    /// Note that this will stop as soon as it encounters a token that doesn't
    /// fit this pattern.
    ///
    /// ## Errors
    /// Forwards any errors from `T::parse`.
    pub fn parse_separated_trailing(input: ParseStream<'_>) -> Result<Self>
    where
        T: Parse,
    {
        Self::parse_separated_trailing_with(input, T::parse)
    }

    /// Parses instances of `T` using `f`, separated by instances of `P`, with
    /// optional trailing punctuation.
    ///
    /// Note that this will stop as soon as it encounters a token that doesn't
    /// fit this pattern.
    ///
    /// ## Errors
    /// Forwards any errors from `f`.
    pub fn parse_separated_trailing_with<F: FnMut(ParseStream<'_>) -> Result<T>>(
        input: ParseStream<'_>,
        mut f: F,
    ) -> Result<Self> {
        let mut punctuated = Punctuated::new();

        loop {
            if input.is_empty() {
                break;
            }
            punctuated.push_value(f(input)?);
            if input.is_empty() {
                break;
            }
            punctuated.push_punct(input.parse()?);
        }

        Ok(punctuated)
    }

    /// Parses instances of `T` separated by instances of `P`, with trailing
    /// punctuation.
    ///
    /// Note that this function attempts to consume the entire stream.
    ///
    /// ## Errors
    /// Forwards any errors from `T::parse`.
    pub fn parse_terminated(input: ParseStream<'_>) -> Result<Self>
    where
        T: Parse,
    {
        Self::parse_terminated_with(input, T::parse)
    }

    // Parses instances of `T` using `f`, separated by instances of `P`, with
    /// trailing punctuation.
    ///
    /// Note that this function attempts to consume the entire stream.
    ///
    /// ## Errors
    /// Forwards any errors from `f`.
    pub fn parse_terminated_with<F: FnMut(ParseStream<'_>) -> Result<T>>(
        input: ParseStream<'_>,
        mut f: F,
    ) -> Result<Self> {
        let mut punctuated = Punctuated::new();

        while !input.is_empty() {
            punctuated.push_value(f(input)?);
            punctuated.push_punct(input.parse()?);
        }

        Ok(punctuated)
    }

    /// Returns an iterator over the values in this struct.
    pub fn iter(&self) -> Iter<T, P> {
        Iter {
            main: self.pairs.iter(),
            end: self.end.as_ref(),
        }
    }

    /// Returns an iterator that allows modifying each value.
    pub fn iter_mut(&mut self) -> IterMut<T, P> {
        IterMut {
            main: self.pairs.iter_mut(),
            end: self.end.as_mut(),
        }
    }

    /// Returns an iterator over the pairs of values and punctuation in this
    /// struct.
    pub fn pairs(&self) -> Pairs<T, P> {
        Pairs {
            main: self.pairs.iter(),
            end: self.end.as_ref(),
        }
    }

    /// Returns an iterator that allows modifying each pair.
    pub fn pairs_mut(&mut self) -> PairsMut<T, P> {
        PairsMut {
            main: self.pairs.iter_mut(),
            end: self.end.as_mut(),
        }
    }

    /// Returns a consuming iterator over the pairs in this struct.
    pub fn into_pairs(self) -> IntoPairs<T, P> {
        IntoPairs {
            main: self.pairs.into_iter(),
            end: self.end,
        }
    }
}

impl<T, P: Punct> IntoIterator for Punctuated<T, P> {
    type Item = T;
    type IntoIter = IntoIter<T, P>;

    fn into_iter(self) -> Self::IntoIter {
        IntoIter {
            main: self.pairs.into_iter(),
            end: self.end,
        }
    }
}

/// An iterator over `&T`.
pub struct Iter<'a, T, P> {
    main: slice::Iter<'a, (T, P)>,
    end: Option<&'a T>,
}

impl<'a, T, P> Iterator for Iter<'a, T, P> {
    type Item = &'a T;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((next, _)) = self.main.next() {
            return Some(next);
        }
        self.end.take()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<'a, T, P> DoubleEndedIterator for Iter<'a, T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(next) = self.end.take() {
            return Some(next);
        }
        self.main.next_back().map(|(value, _)| value)
    }
}

impl<'a, T, P> ExactSizeIterator for Iter<'a, T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}

/// An iterator over `&mut T`.
pub struct IterMut<'a, T, P> {
    main: slice::IterMut<'a, (T, P)>,
    end: Option<&'a mut T>,
}

impl<'a, T, P> Iterator for IterMut<'a, T, P> {
    type Item = &'a mut T;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((next, _)) = self.main.next() {
            return Some(next);
        }
        self.end.take()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<'a, T, P> DoubleEndedIterator for IterMut<'a, T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(next) = self.end.take() {
            return Some(next);
        }
        self.main.next_back().map(|(value, _)| value)
    }
}

impl<'a, T, P> ExactSizeIterator for IterMut<'a, T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}

/// An iterator over `T`.
pub struct IntoIter<T, P> {
    main: vec::IntoIter<(T, P)>,
    end: Option<T>,
}

impl<T, P> Iterator for IntoIter<T, P> {
    type Item = T;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((next, _)) = self.main.next() {
            return Some(next);
        }
        self.end.take()
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<T, P> DoubleEndedIterator for IntoIter<T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(next) = self.end.take() {
            return Some(next);
        }
        self.main.next_back().map(|(value, _)| value)
    }
}

impl<T, P> ExactSizeIterator for IntoIter<T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}

/// A punctuated pair.
#[derive(Debug, Clone, Copy)]
pub enum Pair<T, P> {
    /// A value of type `T` followed by a piece of punctuation of type `P`.
    Punctuated(T, P),
    /// A value of type `T`.
    End(T),
}

impl<T, P> Pair<T, P> {
    /// Converts the pair into the inner value.
    pub fn into_value(self) -> T {
        match self {
            Pair::Punctuated(value, _) | Pair::End(value) => value,
        }
    }
}

/// An iterator over `Pair(&T, &P)`.
pub struct Pairs<'a, T, P> {
    main: slice::Iter<'a, (T, P)>,
    end: Option<&'a T>,
}

impl<'a, T, P> Iterator for Pairs<'a, T, P> {
    type Item = Pair<&'a T, &'a P>;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((value, punct)) = self.main.next() {
            return Some(Pair::Punctuated(value, punct));
        }
        self.end.take().map(Pair::End)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<'a, T, P> DoubleEndedIterator for Pairs<'a, T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(value) = self.end.take() {
            return Some(Pair::End(value));
        }
        self.main
            .next_back()
            .map(|(value, punct)| Pair::Punctuated(value, punct))
    }
}

impl<'a, T, P> ExactSizeIterator for Pairs<'a, T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}

/// An iterator over `Pair(&mut T, &mut P)`.
pub struct PairsMut<'a, T, P> {
    main: slice::IterMut<'a, (T, P)>,
    end: Option<&'a mut T>,
}

impl<'a, T, P> Iterator for PairsMut<'a, T, P> {
    type Item = Pair<&'a mut T, &'a mut P>;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((value, punct)) = self.main.next() {
            return Some(Pair::Punctuated(value, punct));
        }
        self.end.take().map(Pair::End)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<'a, T, P> DoubleEndedIterator for PairsMut<'a, T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(value) = self.end.take() {
            return Some(Pair::End(value));
        }
        self.main
            .next_back()
            .map(|(value, punct)| Pair::Punctuated(value, punct))
    }
}

impl<'a, T, P> ExactSizeIterator for PairsMut<'a, T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}

/// An iterator over `Pair(T, P)`.
pub struct IntoPairs<T, P> {
    main: vec::IntoIter<(T, P)>,
    end: Option<T>,
}

impl<T, P> Iterator for IntoPairs<T, P> {
    type Item = Pair<T, P>;

    fn next(&mut self) -> Option<Self::Item> {
        if let Some((value, punct)) = self.main.next() {
            return Some(Pair::Punctuated(value, punct));
        }
        self.end.take().map(Pair::End)
    }

    fn size_hint(&self) -> (usize, Option<usize>) {
        (self.len(), Some(self.len()))
    }
}

impl<T, P> DoubleEndedIterator for IntoPairs<T, P> {
    fn next_back(&mut self) -> Option<Self::Item> {
        if let Some(value) = self.end.take() {
            return Some(Pair::End(value));
        }
        self.main
            .next_back()
            .map(|(value, punct)| Pair::Punctuated(value, punct))
    }
}

impl<T, P> ExactSizeIterator for IntoPairs<T, P> {
    fn len(&self) -> usize {
        self.main.len() + usize::from(self.end.is_some())
    }
}