autumn 0.4.3

A recursive descent parser combinator library
Documentation
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
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
//! Traits for combining and modifying parsers
//!
//! Combinators provide ways of modifying the behavior of parsers and combining parsers that is
//! consistent across all parser implementations.
//!
//! Parsing sequences
//! =================
//!
//! Parsing sequences of characters or values from input is done using parsers that produce a
//! [`Concat`](../trait.Concat.html) and the [`ConcatParserExt`](trait.ConcatParserExt.html) trait that is
//! implemented for all such parsers.
//!
//! The [`ConcatParserExt`](trait.ConcatParserExt.html) provides three combinators for manipulating
//! parsers over sequences of values:
//!
//!  * [`maybe`](trait.ConcatParserExt.html#method.maybe) repeats a parser zero or one times,
//!  * [`multiple`](trait.ConcatParserExt.html#method.multiple) repeats a parser one or more times,
//!    and
//!  * [`and`](trait.ConcatParserExt.html#method.and) uses two parsers in sequence, concatenating
//!    their results into a single list.
//!
//! ```rust
//! # use autumn::prelude::*;
//! /// Parses C-like identifiers
//! fn identifier(source: &str, location: Span) -> ParseResult<String> {
//!     alphabetic
//!         .or("_")
//!         .and(alphanumeric.or("_").multiple().maybe())
//!         .copy_string()
//!         .parse(source, location)
//! }
//! ```
//!
//! When using both [`multiple`](trait.ParserExt.html#method.multiple) and
//! [`maybe`](trait.ParserExt.html#method.maybe) to achieve zero or more repetitions,
//! `multiple().maybe()` must be used; `maybe().multiple()` can find an infinite number of ways to
//! apply any parser on even an empty string.
//!
//! [`and`](trait.ConcatParserExt.html#method.and) and
//! [`multiple`](trait.ConcatParserExt.html#method.multiple) when used with parsers producing a
//! [`Span`](../struct.Span.html) must ensure that all spans are adjacent (don't use
//! [`drop`](trait.ParserExt.html#method.drop) or [`skip`](trait.ParserExt.html#method.skip) to
//! join a pair of [`Span`](../struct.Span.html) results that are not continuous).
//!
//! Multiple potential parsers
//! ==========================
//!
//! The [`or`](trait.ParserExt.html#method.or) will take two parsers and attempt to evaluate both
//! of them returning any successful results produced by either of them. This can include duplicate
//! results if a given parse would be acceptable for either parser.
//!
//! Changing the result of a parser
//! ===============================
//!
//! There are to ways in which the result of a parser can be changed:
//!
//!  * the output value and type can be simply mapped to a new value with a new type using the
//!    [`map`](trait.ParserExt.html#method.map) operation, and
//!  * changing a successful (or already failing) parse into a potentially failing parse with the
//!    [`and_then`](trait.ParserExt.html#method.and_then) operation.
//!
//! ```rust
//! # use autumn::prelude::*;
//! #[derive(Clone)]
//! struct InvalidIdentifier(String);
//!
//! /// Parses C-like identifiers
//! fn identifier(
//!     source: &str,
//!     location: Span,
//! ) -> ParseResult<Option<String>, InvalidIdentifier> {
//!     alphabetic
//!         .or("_")
//!         .and(alphanumeric.or("_").multiple())
//!         .copy_string()
//!         .map(Some)
//!         .on_none(
//!             any_character
//!                 .str_condition(|s| !s.chars().any(char::is_whitespace))
//!                 .multiple()
//!                 .copy_string()
//!                 .and_then(|identifier| throw(None, InvalidIdentifier(identifier)))
//!         )
//!         .catch()
//!         .parse(source, location)
//! }
//! ```
//!
//! Discarding the result of a parser
//! =================================
//!
//! When using two parsers sequentially you may wish to discard the result of either sequence
//! rather than concatenate the results.
//!
//! The [`skip`](trait.ParserExt.html#method.skip) method can be used to combine two parsers,
//! discarding the result of the first and keeping the result of the second.
//!
//! The [`drop`](trait.ParserExt.html#method.drop) method can be used to combine two parsers,
//! keeping the result of the first and discarding the result of the second.
//!
//! ```rust
//! # use autumn::prelude::*;
//! // Produces "right"
//! fn right() -> impl Parser<String> {
//!     "left".skip("right").copy_string()
//! }
//! let skipped = parse(right(), "leftright");
//! # assert_eq!(skipped.values().next().unwrap(), "right");
//!
//! // Produces "left"
//! fn left() -> impl Parser<String> {
//!     "left".drop("right").copy_string()
//! }
//! let dropped = parse(left(), "leftright");
//! # assert_eq!(dropped.values().next().unwrap(), "left");
//! ```
//!
//! Adding conditions to a parser
//! =============================
//!
//! Two methods are provided to require the result of a parser to meet a certain condition:
//!
//!  * [`condition`](trait.ParserExt.html#method.condition) allows a certain condition to be
//!    specified as a function or closure, and
//!  * [`matching`](trait.ParserExt.html#method.matching) allows a value to be provided which the
//!    result must match.
//!
//! Ensuring a parser consumes all input
//! ====================================
//!
//! The [`end`](trait.ParserExt.html#method.end) can be used on any parser to ensure that after any
//! successful parse there is no text left un-parsed in the source. If not used, invoking a parser
//! directly can produce all prefixes that are themselves a valid parse of the source string.
//!
//! Finding the source location for the result of a parser
//! ======================================================
//!
//! When parsing a structured text input a parser may wish to know the location of a segment that
//! was parsed to produce a result. The [`meta`](trait.ParserExt.html#method.meta) method will map
//! a parser such that its result is wrapped in a [`Meta`](../struct.Meta.html), binding it with
//! a [`Span`](trait.Span.html) specifying the location in the source of the parsed text.
//!
//! ```rust
//! # use autumn::prelude::*;
//! /// Parses integers
//! fn integer(source: &str, location: Span) -> ParseResult<String> {
//!     digit.multiple().copy_string().parse(source, location)
//! }
//!
//! /// Parse a list of integers and get the source location of each integer
//! fn integer_list(source: &str, location: Span) -> ParseResult<Vec<Meta<String, Span>>> {
//!     integer
//!         .meta()
//!         .delimited_by(",".maybe_space_after(), ..)
//!         .surrounded_by("[".maybe_space_after(), "]")
//!         .collect()
//!         .parse(source, location)
//! }
//! # assert!(parse(integer_list, "[]").is_success());
//! # assert!(parse(integer_list, "[1, 2]").is_success());
//! # assert!(parse(integer_list, "[1, 2, 3]").is_success());
//! # assert!(parse(integer_list, "[1, 2, 3, 4, ]").is_success());
//! ```
//!
//! Matching parser types with dynamic dispatch
//! ===========================================
//!
//! There are some cases where a parser may need to produce one of many values within the argument
//! to the [`and_then`](trait.ParserExt.html#method.and_then) method. In this case it helps to be
//! able to unify the types of the values with [dynamic
//! dispatch](https://doc.rust-lang.org/book/ch17-02-trait-objects.html#trait-objects-perform-dynamic-dispatch).
//!
//! This can be achieved simply with the [`boxed`](trait.BoxedParserExt.html#method.boxed) method.
//!
//! The [`value`](../parsers/fn.value.html), [`error`](../parsers/fn.error.html), and
//! [`throw`](../parsers/fn.throw.html) functions all produce boxed parsers with types that will
//! match as they are commonly used in this case.
//!
//! ```rust
//! # use autumn::prelude::*;
//! fn alphabet(source: &str, location: Span) -> ParseResult<String, &'static str> {
//!     "abcde"
//!         .and(digit)
//!         .copy_string()
//!         .and_then(|text| {
//!             let text = text;
//!             if text.ends_with("0") {
//!                 throw(text, "Token must not end with 0")
//!             } else {
//!                 value(text)
//!             }
//!         })
//!         .catch()
//!         .parse(source, location)
//! }
//! ```

use crate::location::{Meta, Span};
use crate::parse::{list::List, Concat, ParseResult, Parser};
use crate::parsers::{empty, space, value};
use std::iter::FromIterator;
use std::marker::PhantomData;
use std::ops::{Bound, RangeBounds};

/// Combinators that can be used on all parsers
pub trait ParserExt<T, E>: Parser<T, E> + Sized {
    /// Evaluate two alternative parsers producing all successful parses from both
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn alpha_or_beta() -> impl Parser<String> {
    ///     "alpha".or("beta").copy_string()
    /// }
    /// ```
    fn or<P: Parser<T, E>>(self, other: P) -> Or<Self, P, E> {
        Or(self, other, PhantomData)
    }

    /// Map the output of a parser to a new value and type
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn integer() -> impl Parser<i32> {
    ///     digit.multiple().copy_string().map(|i| FromStr::from_str(&i).unwrap())
    /// }
    /// ```
    fn map<V, F: Fn(T) -> V>(self, map: F) -> Map<Self, F, T, E> {
        Map(self, map, PhantomData)
    }

    /// Apply an additional parser dependant on the result of the preceding parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// enum Token {
    ///     Identifier(String),
    ///     Literal(i32),
    /// }
    /// use Token::*;
    ///
    /// fn identifier() -> impl Parser<String> {
    ///     alphabetic.and(alphanumeric.multiple().maybe()).copy_string()
    /// }
    ///
    /// fn literal() -> impl Parser<i32> {
    ///     "-".maybe()
    ///         .and(digit.multiple())
    ///         .copy_string()
    ///         .map(|i| FromStr::from_str(&i).unwrap())
    /// }
    ///
    /// fn tagged_token() -> impl Parser<Token> {
    ///     "identifier"
    ///         .or("literal")
    ///         .drop(space)
    ///         .copy_string()
    ///         .and_then(|parsed| {
    ///             match parsed.as_str() {
    ///                 "identifier" => identifier().map(Identifier).boxed(),
    ///                 "literal" => literal().map(Literal).boxed(),
    ///                 _ => unreachable!()
    ///             }
    ///         })
    /// }
    /// ```
    fn and_then<V, Q: Parser<V, E>, F: Fn(T) -> Q>(self, map: F) -> AndThen<Self, F, T, E> {
        AndThen(self, map, PhantomData)
    }

    /// Repeatedly apply a parser using it to extend the previous results of the parse
    ///
    /// This allows for a form of 'left recursion' where a parser rule includes itself as its first
    /// parser.
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn identifier() -> impl Parser<String> {
    ///     alphabetic.and(alphanumeric.repeated(..)).copy_string()
    /// }
    ///
    /// fn concat() -> impl Parser<String> {
    ///     identifier()
    ///         .fold(|left| {
    ///             "##".maybe_space_around()
    ///                 .skip(identifier())
    ///                 .map(move |right| {
    ///                     let mut left = left.clone();
    ///                     left.push_str(&right);
    ///                     left
    ///                 })
    ///         })
    /// }
    /// # assert!(parse(concat(), "left").single_parse());
    /// # assert!(parse(concat(), "left ## right").single_parse());
    /// # assert!(parse(concat(), "left ## middle ## right").single_parse());
    /// ```
    fn fold<P: Parser<T, E>, F: Fn(T) -> P>(self, fold: F) -> Fold<Self, F, E> {
        Fold(self, fold, PhantomData)
    }

    /// Apply an alternative parser if the preceding parser produces errors or no successful parses
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn failing_parser() -> impl Parser<String, &'static str> {
    ///     "hello"
    ///         .and("world")
    ///         .copy_string()
    ///         .on_none(error(String::new(), "Not hello world"))
    ///         .on_failure(error(String::new(), "Caught error"))
    /// }
    /// ```
    fn on_failure<P: Parser<T, E>>(self, other: P) -> OnFailure<Self, P, E> {
        OnFailure(self, other, PhantomData)
    }

    /// Apply an alternative parser if the preceding parser produces no successful parses
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn parse_handle_none() -> impl Parser<String, &'static str> {
    ///     "hello"
    ///         .and("world")
    ///         .copy_string()
    ///         .on_none(error(String::new(), "Not hello world"))
    /// }
    /// ```
    fn on_none<P: Parser<T, E>>(self, other: P) -> OnNone<Self, P, E> {
        OnNone(self, other, PhantomData)
    }

    /// Apply an additional parser and discard the result
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn drop_trailing_whitespace() -> impl Parser<String> {
    ///     "hello".drop(space).copy_string()
    /// }
    /// ```
    fn drop<V, P: Parser<V, E>>(self, other: P) -> Drop<Self, P, V, E> {
        Drop(self, other, PhantomData)
    }

    /// Apply an additional parser and discard any result
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn drop_trailing_whitespace() -> impl Parser<String> {
    ///     "hello".maybe_drop(space).copy_string()
    /// }
    /// ```
    fn maybe_drop<V, P: Parser<V, E>>(self, other: P) -> MaybeDrop<Self, P, V, E> {
        MaybeDrop(self, other, PhantomData)
    }

    /// Apply an additional parser and take its output instead
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn drop_leading_whitespace() -> impl Parser<String> {
    ///     space.skip("hello").copy_string()
    /// }
    /// ```
    fn skip<V, P: Parser<V, E>>(self, keep: P) -> Skip<Self, P, T, E> {
        Skip(self, keep, PhantomData)
    }

    /// Only parse successfully if the output of the parser satisfies a given condition
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn foutry_two() -> impl Parser<i32> {
    ///     digit
    ///         .multiple()
    ///         .copy_string()
    ///         .map(|i| FromStr::from_str(&i).unwrap())
    ///         .condition(|i| *i == 42)
    /// }
    /// ```
    fn condition<F: Fn(&T) -> bool>(self, condition: F) -> Condition<Self, F, E> {
        Condition(self, condition, PhantomData)
    }

    /// Only parse successfully if there is no text remaining in the input after a parse
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn single_line() -> impl Parser<String> {
    ///     any_character
    ///         .str_condition(|s| !s.chars().any(|c| c == '\n'))
    ///         .drop("\n")
    ///         .copy_string()
    ///         .end()
    /// }
    /// ```
    fn end(self) -> End<Self, E> {
        End(self, PhantomData)
    }

    /// Transform all exceptions in the result into errors, moving the start of the associated
    /// range to the start of the given parser.
    ///
    /// See [exceptions](../index.html#exceptions).
    fn catch(self) -> Catch<Self, E> {
        Catch(self, PhantomData)
    }

    /// Wrap the output of a parser with the location of the input parsed
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn identifier_location() -> impl Parser<Meta<String, Span>> {
    ///     alphabetic
    ///         .and(alphanumeric.multiple().maybe())
    ///         .copy_string()
    ///         .meta()
    /// }
    /// ```
    fn meta(self) -> MetaMap<Self, E> {
        MetaMap(self, PhantomData)
    }

    /// Wrap the value of a parser in a list
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn parse_integers() -> impl Parser<List<i32>> {
    ///     "-".maybe()
    ///         .and(digit.multiple())
    ///         .copy_string()
    ///         .map(|s| FromStr::from_str(&s).unwrap())
    ///         .to_list()
    ///         .multiple()
    /// }
    /// ```
    fn to_list(self) -> ListMap<Self, E> {
        ListMap(self, PhantomData)
    }

    /// Repeat the parser a given number of times with the provided delimeter with an optional
    /// trailing delimeter
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn integer() -> impl Parser<i32> {
    ///     "-".maybe()
    ///         .and(digit.multiple())
    ///         .copy_string()
    ///         .map(|s| FromStr::from_str(&s).unwrap())
    /// }
    ///
    /// fn integer_list() -> impl Parser<List<i32>> {
    ///     integer()
    ///         .maybe_space_after()
    ///         .delimited_by(",".maybe_space_after(), ..)
    ///         .surrounded_by("[".maybe_space_after(), "]")
    /// }
    /// # assert!(parse(integer_list(), "[1,2,3,4]").single_parse());
    /// # assert!(parse(integer_list(), "[ 1 , 2 , 3 , 4]").single_parse());
    /// # assert!(parse(integer_list(), "[1,2,3,4,]").single_parse());
    /// # assert!(parse(integer_list(), "[ 1 , 2 , 3 , 4 , ]").single_parse());
    /// ```
    fn delimited_by<D, P: Parser<D, E>, R: RangeBounds<usize>>(
        self,
        delimiter: P,
        repetitions: R,
    ) -> DelimitedBy<Self, P, D, R, E> {
        DelimitedBy(self, delimiter, repetitions, PhantomData)
    }

    /// Repeat the parser a given number of times with the provided delimeter
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn integer() -> impl Parser<i32> {
    ///     "-".maybe()
    ///         .and(digit.multiple())
    ///         .copy_string()
    ///         .map(|s| FromStr::from_str(&s).unwrap())
    /// }
    ///
    /// fn integer_list() -> impl Parser<List<i32>> {
    ///     integer()
    ///         .maybe_space_after()
    ///         .strictly_delimited_by(",".maybe_space_after(), ..)
    ///         .surrounded_by("[".maybe_space_after(), "]")
    /// }
    /// # assert!(parse(integer_list(), "[1,2,3,4]").single_parse());
    /// # assert!(parse(integer_list(), "[ 1 , 2 , 3 , 4]").single_parse());
    /// # assert!(parse(integer_list(), "[1,2,3,4,]").is_none());
    /// ```
    fn strictly_delimited_by<D, P: Parser<D, E>, R: RangeBounds<usize>>(
        self,
        delimiter: P,
        repetitions: R,
    ) -> StrictlyDelimitedBy<Self, P, D, R, E> {
        StrictlyDelimitedBy(self, delimiter, repetitions, PhantomData)
    }

    /// Enclose the parser in the given open and close delimeters
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::str::FromStr;
    /// fn integer() -> impl Parser<i32> {
    ///     "-".maybe()
    ///         .and(digit.multiple())
    ///         .copy_string()
    ///         .map(|s| FromStr::from_str(&s).unwrap())
    /// }
    ///
    /// fn integer_list() -> impl Parser<List<i32>> {
    ///     integer()
    ///         .maybe_space_after()
    ///         .strictly_delimited_by(",".maybe_space_after(), ..)
    ///         .surrounded_by("[".maybe_space_after(), "]")
    /// }
    /// # assert!(parse(integer_list(), "[1,2,3,4]").single_parse());
    /// # assert!(parse(integer_list(), "[ 1 , 2 , 3 , 4]").single_parse());
    /// # assert!(parse(integer_list(), "[1,2,3,4,]").is_none());
    /// ```
    fn surrounded_by<O: Clone, C: Clone, OP: Parser<O, E>, CP: Parser<C, E>>(
        self,
        open: OP,
        close: CP,
    ) -> SurroundedBy<Self, OP, CP, O, C, E> {
        SurroundedBy(self, open, close, PhantomData)
    }

    /// Parse two parsers and collect them in a tuple
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::collections::HashSet;
    /// fn operator<O: Clone, A: Clone, B: Clone>(
    ///     operator: impl Parser<O>,
    ///     left: impl Parser<A>,
    ///     right: impl Parser<B>,
    /// ) -> impl Parser<(A, B)> {
    ///     left.drop(operator.maybe_space_around()).pair(right)
    /// }
    /// ```
    fn pair<B, P: Parser<B, E>>(self, other: P) -> Pair<Self, P, E> {
        Pair(self, other, PhantomData)
    }

    /// Ignore the space that always appears after the parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::collections::HashSet;
    /// fn item() -> impl Parser<String> {
    ///     alphanumeric.multiple().copy_string()
    /// }
    ///
    /// fn set_decl() -> impl Parser<HashSet<String>> {
    ///     item()
    ///         .delimited_by(space, ..)
    ///         .surrounded_by(
    ///             "set".space_after().drop("{".maybe_space_after()),
    ///             "}"
    ///         )
    ///         .collect()
    /// }
    /// # assert!(parse(set_decl(), "set{}").is_none());
    /// # assert!(parse(set_decl(), "set {}").single_parse());
    /// # assert!(parse(set_decl(), "set { }").single_parse());
    /// # assert!(parse(set_decl(), "set {one two three}").single_parse());
    /// # assert!(parse(set_decl(), "set { one two three }").single_parse());
    /// ```
    fn space_after(self) -> SpaceAfter<Self, E> {
        SpaceAfter(self, PhantomData)
    }

    /// Ignore the space that might appear after the parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::collections::HashSet;
    /// fn item() -> impl Parser<String> {
    ///     alphanumeric.multiple().copy_string()
    /// }
    ///
    /// fn set_decl() -> impl Parser<HashSet<String>> {
    ///     item()
    ///         .delimited_by(space, ..)
    ///         .surrounded_by(
    ///             "set".maybe_space_after().drop("{".maybe_space_after()),
    ///             "}"
    ///         )
    ///         .collect()
    /// }
    /// # assert!(parse(set_decl(), "set{}").single_parse());
    /// # assert!(parse(set_decl(), "set { }").single_parse());
    /// # assert!(parse(set_decl(), "set {one two three}").single_parse());
    /// # assert!(parse(set_decl(), "set { one two three }").single_parse());
    fn maybe_space_after(self) -> MaybeSpaceAfter<Self, E> {
        MaybeSpaceAfter(self, PhantomData)
    }

    /// Ignore the space that always appears before the parser
    fn space_before(self) -> SpaceBefore<Self, E> {
        SpaceBefore(self, PhantomData)
    }

    /// Ignore the space that might appear before the parser
    fn maybe_space_before(self) -> MaybeSpaceBefore<Self, E> {
        MaybeSpaceBefore(self, PhantomData)
    }

    /// Ignore the space that always appears before and after the parser
    fn space_around(self) -> SpaceAround<Self, E> {
        SpaceAround(self, PhantomData)
    }

    /// Ignore the space that might appear before or after the parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// use std::collections::HashSet;
    /// fn operator<O: Clone, A: Clone, B: Clone>(
    ///     left: impl Parser<A>,
    ///     operator: impl Parser<O>,
    ///     right: impl Parser<B>,
    /// ) -> impl Parser<(A, B)> {
    ///     left.drop(operator.maybe_space_around()).pair(right)
    /// }
    /// # assert!(parse(operator("left", "+", "right"), "left+right").single_parse());
    /// # assert!(parse(operator("left", "+", "right"), "left +right").single_parse());
    /// # assert!(parse(operator("left", "+", "right"), "left+ right").single_parse());
    /// # assert!(parse(operator("left", "+", "right"), "left + right").single_parse());
    /// ```
    fn maybe_space_around(self) -> MaybeSpaceAround<Self, E> {
        MaybeSpaceAround(self, PhantomData)
    }
}

impl<T, E, P: Parser<T, E>> ParserExt<T, E> for P {}

/// Combinators on parsers that produce a [`Concat`](../trait.Concat.html)
///
/// Parsing sequences of characters or values from input is done using parsers that produce a
/// [`Concat`](../trait.Concat.html) and the [`ConcatParserExt`](trait.ConcatParserExt.html) trait that
/// is implemented for all such parsers.
///
/// The [`ConcatParserExt`](trait.ConcatParserExt.html) provides three combinators for manipulating
/// parsers over sequences of values:
///
///  * [`maybe`](trait.ConcatParserExt.html#method.maybe) repeats a parser zero or one times,
///  * [`multiple`](trait.ConcatParserExt.html#method.multiple) repeats a parser one or more times,
///    and
///  * [`and`](trait.ConcatParserExt.html#method.and) uses two parsers in sequence, concatenating
///    their results into a single list.
///
/// ```rust
/// # use autumn::prelude::*;
/// /// Parses C-like identifiers
/// fn identifier(source: &str, location: Span) -> ParseResult<String> {
///     alphabetic
///         .or("_")
///         .and(alphanumeric.or("_").multiple().maybe())
///         .copy_string()
///         .parse(source, location)
/// }
/// ```
///
/// When using both [`multiple`](trait.ParserExt.html#method.multiple) and
/// [`maybe`](trait.ParserExt.html#method.maybe) to achieve zero or more repetitions,
/// `multiple().maybe()` must be used; `maybe().multiple()` can find an infinite number of ways to
/// apply any parser on even an empty string.
///
/// The characters or values read from input are pushed into the [`List`](../list/struct.List.html)
/// in last-in first-out (LIFO) order, so the list must be
/// [reversed](../list/struct.List.html#method.reverse) in order to iterate over the items in the
/// order they were added.
pub trait ConcatParserExt<T: Concat + Clone, E>: Parser<T, E> + Sized {
    /// Repeat a parser one or more times
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn scream_parser() -> impl Parser<Span> {
    ///     "a".multiple().and("h".multiple()).and("!")
    /// }
    /// ```
    fn multiple(self) -> Multiple<Self, E> {
        Multiple(self, PhantomData)
    }

    /// Use a parser once or not at all
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn nondeterministic_parser() -> impl Parser<Span> {
    ///     "non".maybe().and("deterministic")
    /// }
    /// ```
    fn maybe(self) -> Maybe<Self, E> {
        Maybe(self, PhantomData)
    }

    /// Use one parser after another parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn simple_identifier() -> impl Parser<Span> {
    ///     alphabetic.and(digit)
    /// }
    /// ```
    fn and<P: Parser<T, E>>(self, other: P) -> And<Self, P, E> {
        And(self, other, PhantomData)
    }

    /// Repeat a parser for a specified number of times
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn scream_parser() -> impl Parser<Span> {
    ///     "a".multiple().and("h".repeated(1..3)).and("!")
    /// }
    /// # assert!(parse(scream_parser(), "a!").is_none());
    /// # assert!(parse(scream_parser(), "ah!").single_parse());
    /// # assert!(parse(scream_parser(), "ahh!").single_parse());
    /// # assert!(parse(scream_parser(), "ahhh!").is_none());
    /// ```
    fn repeated<R: RangeBounds<usize> + Clone>(self, repetitions: R) -> Repeat<Self, R, E> {
        Repeat(self, repetitions, PhantomData)
    }
}

impl<T: Concat + Clone, E, P: Parser<T, E>> ConcatParserExt<T, E> for P {}

/// Combinators on parsers that produce a [`List`](../list/struct.List.html)
///
/// Sequences parsed into a [`List`](../list/struct.List.html) with only a single valid parse can
/// be collected into any container implementing `FromIterator`.
pub trait ListParserExt<T, E>: Parser<List<T>, E> + Sized {
    /// Collect a unqiely parsed list into a different kind of container
    ///
    /// Panics
    /// ======
    ///
    /// If the list, elements of the list, or a subsequence of the list has been copied or if the
    /// list is the result of a parser with more than a single unique parse then this operation
    /// will panic.
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn token() -> impl Parser<String> {
    ///     alphabetic.and(alphanumeric).copy_string()
    /// }
    ///
    /// fn token_sequence() -> impl Parser<Vec<String>> {
    ///     token().to_list().multiple().collect()
    /// }
    /// ```
    fn collect<I: FromIterator<T>>(self) -> Collect<Self, T, I, E> {
        Collect(self, PhantomData)
    }
}

impl<T, E, P: Parser<List<T>, E>> ListParserExt<T, E> for P {}

/// Boxing parsers for [dynamic
/// dispatch](https://doc.rust-lang.org/book/ch17-02-trait-objects.html#trait-objects-perform-dynamic-dispatch)
///
/// There are some cases where a parser may need to produce one of many values within the argument
/// to the [`and_then`](trait.ParserExt.html#method.and_then) method. In this case it helps to be
/// able to unify the types of the values with [dynamic
/// dispatch](https://doc.rust-lang.org/book/ch17-02-trait-objects.html#trait-objects-perform-dynamic-dispatch).
///
/// This can be achieved simply with the [`boxed`](trait.BoxedParserExt.html#method.boxed) method.
///
/// The [`value`](../parsers/fn.value.html), [`error`](../parsers/fn.error.html), and
/// [`throw`](../parsers/fn.throw.html) functions all produce boxed parsers with types that will
/// match as they are commonly used in this case.
///
/// ```rust
/// # use autumn::prelude::*;
/// fn alphabet(source: &str, location: Span) -> ParseResult<String, &'static str> {
///     "abcde"
///         .and(digit)
///         .copy_string()
///         .and_then(|text| {
///             let text = text;
///             if text.ends_with("0") {
///                 throw(text, "Token must not end with 0")
///             } else {
///                 value(text)
///             }
///         })
///         .catch()
///         .parse(source, location)
/// }
/// ```
pub trait BoxedParserExt<'p, T, E>: Parser<T, E> + Sized + 'p {
    /// Convert a parser into a dynamically dispatched parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn parser() -> impl Parser<Span> {
    ///     "a".and("b".or("c")).boxed()
    /// }
    /// ```
    fn boxed(self) -> Boxed<dyn Parser<T, E> + 'p> {
        Boxed::new(self)
    }

    /// Convert a parser into a dynamically dispatched parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn parser() -> impl Parser<Span> {
    ///     "a".and("b".or("c")).boxed()
    /// }
    /// ```
    fn ref_parser(&'p self) -> Referenced<'p, Self, E> {
        Referenced(self, PhantomData)
    }
}

impl<'p, T: 'p, E: 'p, P: Parser<T, E> + 'p> BoxedParserExt<'p, T, E> for P {}

/// Combinators on parser that produce a list of characters
pub trait TextParserExt<E>: Parser<Span, E> + Sized {
    /// Convert the list of characters into a string within a parser
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn identifier() -> impl Parser<String> {
    ///     alphabetic.and(alphanumeric.multiple().maybe()).copy_string()
    /// }
    /// ```
    fn copy_string(self) -> StringMap<Self, E> {
        StringMap(self, PhantomData)
    }

    /// Only parse successfully if there is no text remaining in the input after a parse
    ///
    /// ```rust
    /// # use autumn::prelude::*;
    /// fn single_line() -> impl Parser<String> {
    ///     any_character
    ///         .str_condition(|s| !s.chars().any(|c| c == '\n'))
    ///         .drop("\n")
    ///         .copy_string()
    ///         .end()
    /// }
    /// ```
    fn str_condition<F: Fn(&str) -> bool>(self, f: F) -> StrCondition<Self, F, E> {
        StrCondition(self, f, PhantomData)
    }
}

impl<E, P: Parser<Span, E>> TextParserExt<E> for P {}

/// The result of the [`multiple`](trait.ConcatParserExt.html#method.multiple) function in the
/// [`ConcatParserExt`](trait.ConcatParserExt.html) trait
pub struct Multiple<P, E>(P, PhantomData<E>);

impl<T: Concat + Clone, E, P: Parser<T, E>> Parser<T, E> for Multiple<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|parsed, source, mut location| {
                self.parse(source, location.take())
                    .map(&|tail| parsed.clone().concat(tail))
                    .or(ParseResult::success(parsed, source, location))
            })
    }
}

/// The result of the [`repeated`](trait.ConcatParserExt.html#method.repeated) function in the
/// [`ConcatParserExt`](trait.ConcatParserExt.html) trait
pub struct Repeat<P, R, E>(P, R, PhantomData<E>);

#[derive(Clone)]
struct Counter<P>(P, usize);

impl<P: Concat> Concat for Counter<P> {
    fn empty() -> Self {
        Counter(P::empty(), 0)
    }

    fn empty_at(location: Span) -> Self {
        Counter(P::empty_at(location), 0)
    }

    fn concat(self, other: Self) -> Self {
        Counter(self.0.concat(other.0), self.1 + other.1)
    }
}

impl<T: Concat + Clone, E, R: RangeBounds<usize>, P: Parser<T, E>> Parser<T, E>
    for Repeat<P, R, E>
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .ref_parser()
            .map(|parsed| Counter(parsed, 1))
            .multiple()
            .maybe()
            .parse(source, location)
            .and_then(&|Counter(parsed, length), source, location| {
                let long_enough = match self.1.start_bound() {
                    // Not enough for the minimum length
                    Bound::Included(minimum) if length < *minimum => ParseResult::none(location),
                    Bound::Excluded(minimum) if length <= *minimum => ParseResult::none(location),
                    // No minimum bound
                    _ => ParseResult::success(parsed.clone(), source, location),
                };
                match self.1.end_bound() {
                    // Too many elements
                    Bound::Included(maximum) if length > *maximum => ParseResult::none(location),
                    Bound::Excluded(maximum) if length >= *maximum => ParseResult::none(location),
                    // Could take more elements
                    _ => long_enough,
                }
            })
    }
}

/// The result of the [`maybe`](trait.ConcatParserExt.html#method.maybe) function in the
/// [`ConcatParserExt`](trait.ConcatParserExt.html) trait
pub struct Maybe<P, E>(P, PhantomData<E>);

impl<T: Concat, E, P: Parser<T, E>> Parser<T, E> for Maybe<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location.clone())
            .or(empty(source, location))
    }
}

/// The result of the [`condition`](trait.ParserExt.html#method.condition) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Condition<P, F, E>(P, F, PhantomData<E>);

impl<T, E, P: Parser<T, E>, F: Fn(&T) -> bool> Parser<T, E> for Condition<P, F, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|parsed, source, location| {
                if self.1(&parsed) {
                    ParseResult::success(parsed, source, location)
                } else {
                    ParseResult::none(location)
                }
            })
    }
}

/// The result of the [`matching`](trait.ParserExt.html#method.matching) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Matching<P, F, E>(P, F, PhantomData<E>);

impl<T: PartialEq<V>, V, E, P: Parser<T, E>> Parser<T, E> for Matching<P, V, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|parsed, source, location| {
                if parsed == self.1 {
                    ParseResult::success(parsed, source, location)
                } else {
                    ParseResult::none(location)
                }
            })
    }
}

/// The result of the [`or`](trait.ParserExt.html#method.or) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Or<A, B, E>(A, B, PhantomData<E>);

impl<A, B, T: Clone, E> Parser<T, E> for Or<A, B, E>
where
    A: Parser<T, E>,
    B: Parser<T, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location.clone())
            .or(self.1.parse(source, location))
    }
}

/// The result of the [`and`](trait.ConcatParserExt.html#method.and) function in the
/// [`ConcatParserExt`](trait.ConcatParserExt.html) trait
pub struct And<A, B, E>(A, B, PhantomData<E>);

impl<A, B, T, E> Parser<T, E> for And<A, B, E>
where
    T: Concat + Clone,
    A: Parser<T, E>,
    B: Parser<T, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|prefix, source, location| {
                self.1
                    .parse(source, location)
                    .map(&|suffix| prefix.clone().concat(suffix))
            })
    }
}

/// The result of the [`map`](trait.ParserExt.html#method.map) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Map<P, F, T, E>(P, F, PhantomData<(T, E)>);

impl<P, F, T, E, V> Parser<V, E> for Map<P, F, T, E>
where
    P: Parser<T, E>,
    F: Fn(T) -> V,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, V, E> {
        self.0.parse(source, location).map(&self.1)
    }
}

/// The result of the [`and_then`](trait.ParserExt.html#method.and_then) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct AndThen<P, F, T, E>(P, F, PhantomData<(T, E)>);

impl<P, F, T, E, Q, V> Parser<V, E> for AndThen<P, F, T, E>
where
    P: Parser<T, E>,
    Q: Parser<V, E>,
    F: Fn(T) -> Q,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, V, E> {
        self.0
            .parse(source, location)
            .and_then(&|value, source, location| (self.1)(value).parse(source, location))
    }
}

/// The result of the [`repeat`](trait.ParserExt.html#method.repeat) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Fold<P, F, E>(P, F, PhantomData<E>);

impl<P, F, T, E, Q> Parser<T, E> for Fold<P, F, E>
where
    T: Clone,
    P: Parser<T, E>,
    Q: Parser<T, E>,
    F: Fn(T) -> Q + Clone,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .ref_parser()
            .and_then(|parsed| {
                (self.1)(parsed.clone())
                    .fold(self.1.clone())
                    .or(value(parsed))
            })
            .parse(source, location)
    }
}

/// The result of the [`on_failure`](trait.ParserExt.html#method.on_failure) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct OnFailure<A, B, E>(A, B, PhantomData<E>);

impl<A, B, T: Clone, E> Parser<T, E> for OnFailure<A, B, E>
where
    A: Parser<T, E>,
    B: Parser<T, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        let parse = self.0.parse(source, location.clone());
        if parse.is_success() {
            parse
        } else {
            parse.or(self.1.parse(source, location))
        }
    }
}

/// The result of the [`on_none`](trait.ParserExt.html#method.on_none) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct OnNone<A, B, E>(A, B, PhantomData<E>);

impl<A, B, T: Clone, E> Parser<T, E> for OnNone<A, B, E>
where
    A: Parser<T, E>,
    B: Parser<T, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        let parse = self.0.parse(source, location.clone());
        if parse.is_none() {
            parse.or(self.1.parse(source, location))
        } else {
            parse
        }
    }
}

/// The result of the [`drop`](trait.ParserExt.html#method.drop) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Drop<A, B, V, E>(A, B, PhantomData<(V, E)>);

impl<A, B, T: Clone, V, E> Parser<T, E> for Drop<A, B, V, E>
where
    A: Parser<T, E>,
    B: Parser<V, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|keep, source, location| {
                self.1.parse(source, location).map(&|_| keep.clone())
            })
    }
}

/// The result of the [`maybe_drop`](trait.ParserExt.html#method.maybe_drop) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct MaybeDrop<A, B, V, E>(A, B, PhantomData<(V, E)>);

impl<A, B, T: Clone, V, E> Parser<T, E> for MaybeDrop<A, B, V, E>
where
    A: Parser<T, E>,
    B: Parser<V, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|keep, source, location| {
                self.1
                    .parse(source, location)
                    .map(&|_| keep.clone())
                    .or(ParseResult::success(keep, source, location))
            })
    }
}

/// The result of the [`skip`](trait.ParserExt.html#method.skip) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Skip<P, Q, T, E>(P, Q, PhantomData<(T, E)>);

impl<P, Q, T, V, E> Parser<V, E> for Skip<P, Q, T, E>
where
    P: Parser<T, E>,
    Q: Parser<V, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, V, E> {
        self.0
            .parse(source, location)
            .and_then(&|_, source, location| self.1.parse(source, location))
    }
}

/// The result of the [`boxed`](trait.BoxedParserExt.html#method.boxed) function in the
/// [`BoxedParserExt`](trait.BoxedParserExt.html) trait
pub struct Boxed<P: ?Sized>(Box<P>);

impl<'p, T, E> Boxed<dyn Parser<T, E> + 'p> {
    pub(crate) fn new<P: Parser<T, E> + 'p>(parser: P) -> Self {
        let boxed: Box<dyn Parser<T, E> + 'p> = Box::new(parser);
        Boxed(boxed)
    }
}

impl<'p, T, E> Parser<T, E> for Boxed<dyn Parser<T, E> + 'p> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0.parse(source, location)
    }
}

/// The result of the [`ref_parser`](trait.BoxedParserExt.html#method.ref_parser) function in the
/// [`BoxedParserExt`](trait.BoxedParserExt.html) trait
pub struct Referenced<'p, P, E>(&'p P, PhantomData<E>);

impl<'p, T, E, P: Parser<T, E>> Parser<T, E> for Referenced<'p, P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0.parse(source, location)
    }
}

/// The result of the [`end`](trait.ParserExt.html#method.end) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct End<P, E>(P, PhantomData<E>);

impl<T, E, P: Parser<T, E>> Parser<T, E> for End<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .parse(source, location)
            .and_then(&|value, source, location| {
                if source.len() == 0 {
                    ParseResult::success(value, source, location)
                } else {
                    ParseResult::none(location)
                }
            })
    }
}

/// The result of the [`catch`](trait.ParserExt.html#method.catch) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Catch<P, E>(P, PhantomData<E>);

impl<T, E, P: Parser<T, E>> Parser<T, E> for Catch<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0.parse(source, location).catch()
    }
}

/// The result of the [`meta`](trait.ParserExt.html#method.meta) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct MetaMap<P, E>(P, PhantomData<E>);

impl<T, E, P: Parser<T, E>> Parser<Meta<T, Span>, E> for MetaMap<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, Meta<T, Span>, E> {
        self.0.parse(source, location).meta()
    }
}

/// The result of the [`to_list`](trait.ParserExt.html#method.to_list) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct ListMap<P, E>(P, PhantomData<E>);

impl<T, E, P: Parser<T, E>> Parser<List<T>, E> for ListMap<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, List<T>, E> {
        self.0.parse(source, location).map(&List::single)
    }
}

/// The result of the [`delimited_by`](trait.ParserExt.html#method.delimited_by) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct DelimitedBy<P, S, D, R, E>(P, S, R, PhantomData<(D, E)>);

impl<T, D, E, R, P, S> Parser<List<T>, E> for DelimitedBy<P, S, D, R, E>
where
    T: Clone,
    R: RangeBounds<usize> + Clone,
    P: Parser<T, E>,
    S: Parser<D, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, List<T>, E> {
        self.0
            .ref_parser()
            .drop(self.1.ref_parser())
            .to_list()
            .multiple()
            .maybe()
            .and(
                self.0
                    .ref_parser()
                    .to_list()
                    .maybe_drop(self.1.ref_parser()),
            )
            .maybe()
            .parse(source, location)
            .and_then(&|parsed, source, location| {
                let length = parsed.length();
                let long_enough = match self.2.start_bound() {
                    // Not enough for the minimum length
                    Bound::Included(minimum) if length < *minimum => ParseResult::none(location),
                    Bound::Excluded(minimum) if length <= *minimum => ParseResult::none(location),
                    // No minimum bound
                    _ => ParseResult::success(parsed.clone(), source, location),
                };
                match self.2.end_bound() {
                    // Too many elements
                    Bound::Included(maximum) if length > *maximum => ParseResult::none(location),
                    Bound::Excluded(maximum) if length >= *maximum => ParseResult::none(location),
                    // Could take more elements
                    _ => long_enough,
                }
            })
    }
}

/// The result of the [`strictly_delimited_by`](trait.ParserExt.html#method.strictly_delimited_by)
/// function in the [`ParserExt`](trait.ParserExt.html) trait
pub struct StrictlyDelimitedBy<P, S, D, R, E>(P, S, R, PhantomData<(D, E)>);

impl<T, D, E, R, P, S> Parser<List<T>, E> for StrictlyDelimitedBy<P, S, D, R, E>
where
    T: Clone,
    R: RangeBounds<usize> + Clone,
    P: Parser<T, E>,
    S: Parser<D, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, List<T>, E> {
        self.0
            .ref_parser()
            .drop(self.1.ref_parser())
            .to_list()
            .multiple()
            .maybe()
            .and(self.0.ref_parser().to_list())
            .maybe()
            .parse(source, location)
            .and_then(&|parsed, source, location| {
                let length = parsed.length();
                let long_enough = match self.2.start_bound() {
                    // Not enough for the minimum length
                    Bound::Included(minimum) if length < *minimum => ParseResult::none(location),
                    Bound::Excluded(minimum) if length <= *minimum => ParseResult::none(location),
                    // No minimum bound
                    _ => ParseResult::success(parsed.clone(), source, location),
                };
                match self.2.end_bound() {
                    // Too many elements
                    Bound::Included(maximum) if length > *maximum => ParseResult::none(location),
                    Bound::Excluded(maximum) if length >= *maximum => ParseResult::none(location),
                    // Could take more elements
                    _ => long_enough,
                }
            })
    }
}

/// The result of the [`surrounded_by`](trait.ParserExt.html#method.surrounded_by)
/// function in the [`ParserExt`](trait.ParserExt.html) trait
pub struct SurroundedBy<P, OP, CP, O, C, E>(P, OP, CP, PhantomData<(O, C, E)>);

impl<T, O, C, P, OP, CP, E> Parser<T, E> for SurroundedBy<P, OP, CP, O, C, E>
where
    T: Clone,
    P: Parser<T, E>,
    OP: Parser<C, E>,
    CP: Parser<C, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.1
            .ref_parser()
            .skip(self.0.ref_parser())
            .drop(self.2.ref_parser())
            .parse(source, location)
    }
}

/// The result of the [`copy_string`](trait.TextParserExt.html#method.copy_string) function in the
/// [`TextParserExt`](trait.TextParserExt.html) trait
pub struct StringMap<P, E>(P, PhantomData<E>);

impl<E, P: Parser<Span, E>> Parser<String, E> for StringMap<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, String, E> {
        self.0
            .parse(source, location)
            .map(&|s| s.subslice(&location, source).to_owned())
    }
}

/// The result of the [`str_condition`](trait.TextParserExt.html#method.str_condition) function in
/// the [`TextParserExt`](trait.TextParserExt.html) trait
pub struct StrCondition<P, F, E>(P, F, PhantomData<E>);

impl<E, P: Parser<Span, E>, F: Fn(&str) -> bool> Parser<Span, E> for StrCondition<P, F, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, Span, E> {
        self.0
            .parse(source, location)
            .and_then(&|parsed, remaining, remaining_location| {
                if self.1(parsed.subslice(&location, source)) {
                    ParseResult::success(parsed, remaining, remaining_location)
                } else {
                    ParseResult::none(location)
                }
            })
    }
}

/// The result of the [`collect`](trait.ListParserExt.html#method.collect) function in the
/// [`ListParserExt`](trait.ListParserExt.html) trait
pub struct Collect<P, T, I, E>(P, PhantomData<(T, I, E)>);

impl<T, I: FromIterator<T>, E, P: Parser<List<T>, E>> Parser<I, E> for Collect<P, T, I, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, I, E> {
        let result = self.0.parse(source, location);

        if result.single_parse() || result.is_none() {
            result.map(&|parsed| parsed.drain().collect())
        } else {
            panic!(
                "Cannot collect on parse with more than one result: {}",
                location
            );
        }
    }
}

/// The result of the [`pair`](trait.ParserExt.html#method.pair) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct Pair<A, B, E>(A, B, PhantomData<E>);

impl<A, B, PA, PB, E> Parser<(A, B), E> for Pair<PA, PB, E>
where
    A: Clone,
    PA: Parser<A, E>,
    PB: Parser<B, E>,
{
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, (A, B), E> {
        self.0
            .ref_parser()
            .and_then(move |left| self.1.ref_parser().map(move |right| (left.clone(), right)))
            .parse(source, location)
    }
}

/// The result of the [`space_after`](trait.ParserExt.html#method.space_after) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct SpaceAfter<P, E>(P, PhantomData<E>);

impl<T: Clone, E, P: Parser<T, E>> Parser<T, E> for SpaceAfter<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0.ref_parser().drop(space).parse(source, location)
    }
}

/// The result of the [`maybe_space_after`](trait.ParserExt.html#method.maybe_space_after) function
/// in the [`ParserExt`](trait.ParserExt.html) trait
pub struct MaybeSpaceAfter<P, E>(P, PhantomData<E>);

impl<T: Clone, E, P: Parser<T, E>> Parser<T, E> for MaybeSpaceAfter<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .ref_parser()
            .drop(space.maybe())
            .parse(source, location)
    }
}

/// The result of the [`space_before`](trait.ParserExt.html#method.space_before) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct SpaceBefore<P, E>(P, PhantomData<E>);

impl<T, E, P: Parser<T, E>> Parser<T, E> for SpaceBefore<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        space.skip(self.0.ref_parser()).parse(source, location)
    }
}

/// The result of the [`maybe_space_before`](trait.ParserExt.html#method.maybe_space_before)
/// function in the [`ParserExt`](trait.ParserExt.html) trait
pub struct MaybeSpaceBefore<P, E>(P, PhantomData<E>);

impl<T: Clone, E, P: Parser<T, E>> Parser<T, E> for MaybeSpaceBefore<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        space
            .maybe()
            .skip(self.0.ref_parser())
            .parse(source, location)
    }
}

/// The result of the [`space_around`](trait.ParserExt.html#method.space_around) function in the
/// [`ParserExt`](trait.ParserExt.html) trait
pub struct SpaceAround<P, E>(P, PhantomData<E>);

impl<T: Clone, E, P: Parser<T, E>> Parser<T, E> for SpaceAround<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .ref_parser()
            .space_before()
            .space_after()
            .parse(source, location)
    }
}

/// The result of the [`maybe_space_around`](trait.ParserExt.html#method.maybe_space_around)
/// function in the [`ParserExt`](trait.ParserExt.html) trait
pub struct MaybeSpaceAround<P, E>(P, PhantomData<E>);

impl<T: Clone, E, P: Parser<T, E>> Parser<T, E> for MaybeSpaceAround<P, E> {
    fn parse<'s>(&self, source: &'s str, location: Span) -> ParseResult<'s, T, E> {
        self.0
            .ref_parser()
            .maybe_space_before()
            .maybe_space_after()
            .parse(source, location)
    }
}