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
1482
1483
1484
1485
1486
1487
1488
1489
1490
1491
1492
1493
1494
1495
1496
1497
1498
1499
1500
1501
1502
1503
1504
1505
1506
1507
1508
1509
1510
1511
1512
1513
1514
1515
1516
1517
1518
1519
1520
1521
1522
1523
1524
1525
1526
1527
1528
1529
1530
1531
1532
1533
1534
1535
1536
1537
1538
1539
1540
1541
1542
1543
1544
1545
1546
1547
1548
1549
1550
1551
1552
1553
1554
1555
1556
1557
1558
1559
1560
1561
1562
1563
1564
1565
1566
1567
1568
1569
1570
// This Source Code Form is subject to the terms of the Mozilla Public
// License, v. 2.0. If a copy of the MPL was not distributed with this
// file, You can obtain one at https://mozilla.org/MPL/2.0/.

#![feature(doc_cfg)]
#![warn(clippy::missing_const_for_fn)]

pub mod iter;

#[cfg(feature = "split")]
#[doc(cfg(feature = "split"))]
pub mod split;
#[cfg(feature = "unified")]
#[doc(cfg(feature = "unified"))]
pub mod unified;

macro_rules! token_to_node {
    ($(ref $($mut:ident)?,)? $N:ty: $token:expr, $arena:expr) => {
		<$(&$($mut)?)? $N as TryFrom<$(&$($mut)?)? <$N as Node>::Base>>::try_from(
			$(&$($mut)?)? ($arena).0[($token).idx()]
		)
		.expect("We know this is the correct node type.")
	};
}

pub(crate) use token_to_node;

pub type ArenaIndex = generational_arena::Index;

use std::{
	collections::VecDeque,
	fmt::{Debug, Formatter},
	hash::{Hash, Hasher},
	iter::FusedIterator,
	marker::PhantomData,
	ops::Index,
};

use cfg_attrs::cfg_attrs;

pub struct Token<N: Node> {
	idx: generational_arena::Index,
	_marker: PhantomData<N>,
}

impl<N: Node> Debug for Token<N> {
	#[inline(always)]
	fn fmt(&self, f: &mut Formatter<'_>) -> std::fmt::Result {
		self.idx.fmt(f)
	}
}

impl<N: Node, I: Idx> PartialEq<I> for Token<N> {
	#[inline(always)]
	fn eq(&self, other: &I) -> bool {
		self.idx() == other.idx()
	}
}

impl<N: Node> Eq for Token<N> {}

impl<N: Node> Hash for Token<N> {
	#[inline(always)]
	fn hash<H: Hasher>(&self, state: &mut H) {
		self.idx().hash(state)
	}
}

impl<N: Node> Clone for Token<N> {
	#[inline(always)]
	fn clone(&self) -> Self {
		*self
	}
}

impl<N: Node> Copy for Token<N> {}

mod sealed {
	/// Seals a trait, restricting external crates from implementing it.
	pub trait Sealed {}

	/// Provides a [`NodeToken`]'s [arena index] and seals the trait.
	///
	/// [`NodeToken`]: NodeToken
	/// [arena index]: generational_arena::Index
	pub trait Idx {
		/// Return's this [token]'s [arena index].
		///
		/// [token]: NodeToken
		/// [arena index]: generational_arena::Index;
		fn idx(&self) -> generational_arena::Index;
	}
}

pub(crate) use sealed::*;

pub trait NodeToken<N: Node>: Idx + Copy + PartialEq + Debug {
	/// Returns this [node]'s parent's token.
	///
	/// If this token refers to a root node, that node will have no parent, so [`None`] is returned.
	///
	/// [node]: Node
	#[inline(always)]
	fn parent(&self, arena: &Arena<N::Base>) -> Option<<<N::Base as BaseNode>::Branch as Node>::Token> {
		arena.0[self.idx()].parent()
	}

	/// Returns an iterator over the tokens of this [node]'s ancestors.
	///
	/// This iterator begins with the [node]'s [parent] and ends with the [root] node (i.e. the
	/// ancestor with no [parent]).
	///
	/// [node]: Node
	/// [parent]: Self::parent
	/// [root]: Self::root
	#[inline(always)]
	fn ancestors<'arena>(&self, arena: &'arena Arena<N::Base>) -> iter::Ancestors<'arena, N::Base> {
		arena.0[self.idx()].ancestors(arena)
	}

	/// Returns this [node]'s root node.
	///
	/// The root node is the most distant [ancestor]; it is the only [node] in a tree that does not
	/// have a [parent].
	///
	/// If this [node] is the root node, [`RootToken::This`] is returned. Otherwise,
	/// [`RootToken::Ancestor`] is returned with the root node's token.
	///
	/// Internally, this method iterates over the [node]'s [ancestors] to find the last one, so it
	/// is `O(n)` best, average, and worst case.
	///
	/// [node]: Node
	/// [ancestor]: Self::ancestors
	/// [parent]: Self::parent
	/// [ancestors]: Self::ancestors
	#[inline]
	fn root<'arena>(&self, arena: &'arena Arena<N::Base>) -> RootToken<N>
	where
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).root(arena)
	}

	/// Returns a reference to the [data] associated with this [node].
	///
	/// [node]: Node
	/// [data]: N::Data
	#[inline]
	fn data<'arena>(&self, arena: &'arena Arena<N::Base>) -> N::DataRef<'arena>
	where
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).data()
	}

	/// Returns a mutable reference to the [data] associated with this [node].
	///
	/// [node]: DataNode
	/// [data]: N::Data
	#[inline]
	fn data_mut<'arena>(&self, arena: &'arena mut Arena<N::Base>) -> N::DataRefMut<'arena>
	where
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		token_to_node!(ref mut, N: self, arena).data_mut()
	}

	/// Returns the token of this [node]'s previous sibling.
	///
	/// If this [node] is the first child of its [parent], that means there is no previous sibling
	/// and thus [`None`] is returned.
	///
	/// [node]: LinkedNode
	/// [parent]: Self::parent
	#[inline(always)]
	fn prev(&self, arena: &Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N::Base: LinkedNode,
	{
		arena.0[self.idx()].prev()
	}
	/// Returns the token of this [node]'s next sibling.
	///
	/// If this [node] is the last child of its [parent], that means there is no next sibling and
	/// thus [`None`] is returned.
	///
	/// [node]: LinkedNode
	/// [parent]: Self::parent
	#[inline(always)]
	fn next(&self, arena: &Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N::Base: LinkedNode,
	{
		arena.0[self.idx()].next()
	}

	/// Returns an iterator over the tokens of this [node]'s preceding siblings.
	///
	/// This iterator begins with the [previous] node and ends with the [first child] of the
	/// [parent] node.
	///
	/// If this is the [first child], the iterator will be empty.
	///
	/// [node]: Node
	/// [previous]: Self::prev
	/// [first child]: BranchNode::first
	/// [parent]: Self::parent
	#[inline(always)]
	fn preceding_siblings<'arena>(&self, arena: &'arena Arena<N::Base>) -> iter::PrecedingSiblings<'arena, N>
	where
		N::Base: LinkedNode,
	{
		iter::PrecedingSiblings::new(arena, self.prev(arena))
	}

	/// Returns an iterator over the tokens of this [node]'s following siblings.
	///
	/// This iterator begins with the [next] node and ends with the [last child] of the [parent]
	/// node.
	///
	/// If this is the [last child], the iterator will be empty.
	///
	/// [node]: Node
	/// [next]: Self::next
	/// [last child]: BranchNode::last
	/// [parent]: Self::parent
	#[inline(always)]
	fn following_siblings<'arena>(&self, arena: &'arena Arena<N::Base>) -> iter::FollowingSiblings<'arena, N>
	where
		N::Base: LinkedNode,
	{
		iter::FollowingSiblings::new(arena, self.next(arena))
	}

	/// Returns the token of this [branch node]'s first child.
	///
	/// If this [branch node] has no children, [`None`] is returned.
	///
	/// [branch node]: BranchNode
	#[inline]
	fn first(&self, arena: &Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N: BranchNode,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).first()
	}
	/// Returns the token of this [branch node]'s last child.
	///
	/// If this [branch node] has no children, [`None`] is returned.
	///
	/// [branch node]: BranchNode
	#[inline]
	fn last(&self, arena: &Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N: BranchNode,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).last()
	}

	/// Returns an iterator over the tokens of this [branch node]'s children.
	///
	/// [branch node]: BranchNode
	#[inline]
	fn children<'arena>(&self, arena: &'arena Arena<N::Base>) -> N::ChildrenIter<'arena>
	where
		N: BranchNode,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).children(arena)
	}

	/// Returns an iterator over the tokens of this [branch node]'s descendants.
	///
	/// This iterator is a breadth-first traversal of the branch node's descendants: its [children]
	/// are done first, then those [children]'s [children] in the same order, and so on and so on.
	///
	/// [branch node]: BranchNode
	/// [children]: Self::children
	#[inline]
	fn descendants<'arena>(&self, arena: &'arena Arena<N::Base>) -> iter::Descendants<'arena, N>
	where
		N: BranchNode,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		iter::Descendants::new(token_to_node!(ref, N: self, arena), arena)
	}

	#[cfg(feature = "deque")]
	/// Returns the number of children this [branch node] has.
	///
	/// [branch node]: BranchNodeDeque
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn len(&self, arena: &Arena<N::Base>) -> usize
	where
		N: BranchNodeDeque,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).len()
	}

	/// Returns whether this [branch node] has no children.
	///
	/// [branch node]: BranchNode
	#[inline]
	fn is_empty(&self, arena: &Arena<N::Base>) -> bool
	where
		N: BranchNode,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).is_empty()
	}

	#[cfg(feature = "deque")]
	/// Returns the token of the child at the given `index`.
	///
	/// # Panics
	/// This method will panic if `index` is out of bounds.
	///
	/// # See also
	/// For a fallible version, see [`get`].
	///
	/// [`get`]: Self::get
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn get_unchecked(&self, arena: &Arena<N::Base>, index: usize) -> <N::Base as Node>::Token
	where
		N: BranchNodeDeque,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena)[index]
	}

	#[cfg(feature = "deque")]
	/// Returns the token of the child at the given `index`.
	///
	/// If `index` is out of bounds, [`None`] is returned.
	///
	/// # See also
	/// For a version without bounds checks, see [`get_unchecked`].
	///
	/// [`get_unchecked`]: Self::get_unchecked
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn get(&self, arena: &Arena<N::Base>, index: usize) -> Option<<N::Base as Node>::Token>
	where
		N: BranchNodeDeque,
		for<'base> &'base N: TryFrom<&'base N::Base>,
		for<'base> <&'base N as TryFrom<&'base N::Base>>::Error: Debug,
	{
		token_to_node!(ref, N: self, arena).get(index)
	}

	#[cfg_attrs {
		/// Detaches this branch node's [first child], returning its token.
		///
		/// If this branch node is [empty] then there is no child to detach, so [`None`] is
		/// returned. Otherwise, the child is removed from this branch node's [children], but
		/// remains in the [arena].
		///
		/// This function is useful if you want to move a [node] from one [parent] to another.
		///
		/// # See also
		/// The [last child] may also be detached using [`detach_back`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be detached by index using
			/// [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		///
		/// If you want to remove a child and its descendants from the [arena] altogether, see
		#[configure(
			feature = "deque",
			/// [`pop_front`], [`pop_back`], or, if this is a [`BranchNodeDeque`], [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		#[configure(
			not(feature = "deque"),
			/// [`pop_front`] and [`pop_back`].
		)]
		///
		/// [`detach_back`]: Self::detach_back
		///
		/// [`pop_front`]: Self::pop_front
		/// [`pop_back`]: Self::pop_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [empty]: Self::is_empty
		/// [children]: Self::children
		/// [arena]: Arena
		/// [node]: Node
		/// [parent]: Node::parent
	}]
	#[inline]
	fn detach_front(&self, arena: &mut Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::detach_front(*self, arena)
	}
	#[cfg_attrs {
		/// Detaches this branch node's [last child], returning its token.
		///
		/// If this branch node is [empty] then there is no child to detach, so [`None`] is
		/// returned. Otherwise, the child is removed from this branch node's [children], but
		/// remains in the [arena].
		///
		/// This function is useful if you want to move a [node] from one [parent] to another.
		///
		/// # See also
		/// The [first child] may also be detached using [`detach_front`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be detached by index using
			/// [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		///
		/// If you want to remove a child and its descendants from the [arena] altogether, see
		#[configure(
		feature = "deque",
			/// [`pop_front`], [`pop_back`], or, if this is a [`BranchNodeDeque`], [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		#[configure(
			not(feature = "deque"),
			/// [`pop_front`] and [`pop_back`].
		)]
		///
		/// [`detach_front`]: Self::detach_front
		///
		/// [`pop_front`]: Self::pop_front
		/// [`pop_back`]: Self::pop_back
		/// [`remove`]: BranchNodeDeque::remove
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [empty]: Self::is_empty
		/// [children]: Self::children
		/// [arena]: Arena
		/// [node]: Node
		/// [parent]: Node::parent
	}]
	#[inline]
	fn detach_back(&self, arena: &mut Arena<N::Base>) -> Option<<N::Base as Node>::Token>
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::detach_back(*self, arena)
	}

	#[cfg_attrs {
		/// Removes this branch node's [first child].
		///
		/// If this branch node is [empty] then there is no child to remove, so [`None`] is
		/// returned. Otherwise, the removed [node] is returned.
		///
		/// # See also
		/// The [last child] may also be removed using [`pop_back`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be removed by index using
			/// [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		///
		/// If you don't want to remove a child from the [arena], but merely make it a [root node]
		/// or move it to another [parent], see
		#[configure(
			feature = "deque",
			/// [`detach_front`], [`detach_back`], or, if this is a [`BranchNodeDeque`], [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		#[configure(
			not(feature = "deque"),
			/// [`detach_front`] and [`detach_back`].
		)]
		///
		/// [`pop_back`]: Self::pop_back
		///
		/// [`detach_front`]: Self::detach_front
		/// [`detach_back`]: Self::detach_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [node]: BaseNode
		/// [empty]: Self::is_empty
		/// [arena]: Arena
		/// [root node]: Self::root
		/// [parent]: Self::parent
	}]
	#[inline]
	fn pop_front(&self, arena: &mut Arena<N::Base>) -> Option<<N::Base as BaseNode>::Representation>
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::pop_front(*self, arena)
	}
	#[cfg_attrs {
		/// Removes this branch node's [last child].
		///
		/// If this branch node is [empty] then there is no child to remove, so [`None`] is
		/// returned. Otherwise, the removed [node] is returned.
		///
		/// # See also
		/// The [first child] may also be removed using [`pop_front`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be removed by index using
			/// [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		///
		/// If you don't want to remove a child from the [arena], but merely make it a [root node]
		/// or move it to another [parent], see
		#[configure(
			feature = "deque",
			/// [`detach_front`], [`detach_back`], or, if this is a [`BranchNodeDeque`], [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		#[configure(
			not(feature = "deque"),
			/// [`detach_front`] and [`detach_back`].
		)]
		///
		/// [`pop_front`]: Self::pop_front
		///
		/// [`detach_front`]: Self::detach_front
		/// [`detach_back`]: Self::detach_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [node]: BaseNode
		/// [empty]: Self::is_empty
		/// [arena]: Arena
		/// [root node]: Self::root
		/// [parent]: Self::parent
	}]
	#[inline]
	fn pop_back(&self, arena: &mut Arena<N::Base>) -> Option<<N::Base as BaseNode>::Representation>
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::pop_front(*self, arena)
	}

	#[cfg_attrs {
		/// Pushes the given `new` token's [node] to the beginning of this branch node's
		/// [children].
		///
		/// # Panics
		/// This method will panic if the given `new` token refers to either:
		/// - this branch node's [root]; or
		/// - a [node] that already has a [parent].
		///
		/// # See also
		/// A child may also be pushed to the end with [`push_back`].
		#[configure(
		feature = "deque",
			/// If this is a [`BranchNodeDeque`], [children] may also be inserted by index using
			/// [`insert`].
			///
			/// [`insert`]: BranchNodeDeque::insert
		)]
		///
		/// [`push_back`]: Self::push_back
		///
		/// [node]: BaseNode
		/// [children]: Self::children
		/// [root]: Self::root
		/// [parent]: Node::parent
	}]
	#[inline]
	fn push_front(&self, arena: &mut Arena<N::Base>, new: <N::Base as Node>::Token)
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::push_front(*self, arena, new);
	}
	#[cfg_attrs {
		/// Pushes the given `new` token's [node] to the end of this branch node's [children].
		///
		/// # Panics
		/// This method will panic if the given `new` token refers to either:
		/// - this branch node's [root]; or
		/// - a [node] that already has a [parent].
		///
		/// # See also
		/// A child may also be pushed to the beginning with [`push_front`]. If this is a
		/// [`BranchNodeDeque`], children may also be inserted by index using [`insert`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], [children] may also be inserted by index using
			/// [`insert`].
			///
			/// [`insert`]: BranchNodeDeque::insert
		)]
		///
		/// [`push_front`]: Self::push_front
		///
		/// [node]: BaseNode
		/// [children]: Self::children
		/// [root]: Self::root
		/// [parent]: Node::parent
	}]
	#[inline]
	fn push_back(&self, arena: &mut Arena<N::Base>, new: <N::Base as Node>::Token)
	where
		N: BranchNode<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::push_back(*self, arena, new);
	}

	#[cfg(feature = "deque")]
	/// Detaches the child at the given `index`, returning its token.
	///
	/// This function is useful if you want to move a [node] from one [parent] to another.
	///
	/// # Panics
	/// This method will panic if the given `index` is out of bounds.
	///
	/// # See also
	/// The [first child] or [last child] may be detached with [`detach_front`] and [`detach_back`]
	/// respectively.
	///
	/// If you want to remove a child and its descendents from the [arena] altogether, see
	/// [`remove`], [`pop_front`], or [`pop_back`].
	///
	/// [`detach_front`]: Self::detach_front
	/// [`detach_back`]: Self::detach_back
	///
	/// [`remove`]: Self::remove
	/// [`pop_front`]: Self::pop_front
	/// [`pop_back`]: Self::pop_back
	///
	/// [node]: Node
	/// [arena]: Arena
	/// [parent]: Node::parent
	/// [first child]: Self::first
	/// [last child]: Self::last
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn detach(&self, arena: &mut Arena<N::Base>, index: usize) -> <N::Base as Node>::Token
	where
		N: BranchNodeDeque<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::detach(*self, arena, index)
	}

	#[cfg(feature = "deque")]
	/// Removes the child at the given `index`.
	///
	/// # Panics
	/// This method will panic if the given `index` is out of bounds.
	///
	/// # See also
	/// The [first child] or [last child] may be removed with [`pop_front`] and [`pop_back`]
	/// respectively.
	///
	/// If you don't want to remove a child from the [arena], but merely make it a [root node] or
	/// move it to another [parent], see [`detach`], [`detach_front`], or [`detach_back`].
	///
	/// [`pop_front`]: Self::pop_front
	/// [`pop_back`]: Self::pop_back
	///
	/// [`detach`]: Self::detach
	/// [`detach_front`]: Self::detach_front
	/// [`detach_back`]: Self::detach_back
	///
	/// [arena]: Arena
	/// [root node]: Self::root
	/// [first child]: Self::first
	/// [last child]: Self::last
	/// [parent]: Node::parent
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn remove(&self, arena: &mut Arena<N::Base>, index: usize) -> <N::Base as BaseNode>::Representation
	where
		N: BranchNodeDeque<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::remove(*self, arena, index)
	}

	#[cfg(feature = "deque")]
	/// Inserts the given `new` token's [node] at the given `index`.
	///
	/// # Panics
	/// This method will panic if:
	/// - the given `index` is greater than the [`len()`]; or
	/// - the given `new` [token] refers to either:
	///   - this branch node's [root]; or
	///   - a [node] that already has a [parent].
	///
	/// # See also
	/// A child can also be pushed to the beginning or end of this [branch node]'s [children] with
	/// [`push_front`] and [`push_back`] respectively.
	///
	/// [branch node]: BranchNodeDeque
	/// [children]: Self::children
	/// [`push_front`]: Self::push_front
	/// [`push_back`]: Self::push_back
	///
	/// [node]: BaseNode
	/// [token]: Self::Token
	/// [root]: Self::root
	/// [parent]: Node::parent
	///
	/// [`len()`]: Self::len
	#[doc(cfg(feature = "deque"))]
	#[inline]
	fn insert(&self, arena: &mut Arena<N::Base>, index: usize, new: <N::Base as Node>::Token)
	where
		N: BranchNodeDeque<Token = Self>,
		for<'base> &'base mut N: TryFrom<&'base mut N::Base>,
		for<'base> <&'base mut N as TryFrom<&'base mut N::Base>>::Error: Debug,
	{
		N::insert(*self, arena, index, new)
	}
}

impl<N: Node> Token<N> {
	/// Creates a new token wrapping the given [arena index].
	///
	/// [arena index]: generational_arena::Index
	#[inline(always)]
	pub(crate) const fn new(idx: generational_arena::Index) -> Self {
		Self {
			idx,
			_marker: PhantomData,
		}
	}
}

impl<N: Node> Idx for Token<N> {
	#[inline(always)]
	fn idx(&self) -> generational_arena::Index {
		self.idx
	}
}

impl<N: Node<Token = Self>> NodeToken<N> for Token<N> {}

/// A node in a tree.
pub trait Node: Debug + Sealed {
	/// The 'base node' used in the [arena].
	///
	/// For typed nodes where there is a typed node type in addition to separate branch and leaf
	/// types, all of those types will use the typed node type as the `ArenaNode`.
	///
	/// [arena]: Arena
	type Base: BaseNode;
	/// The [token] associated with this type of node.
	///
	/// [token]: NodeToken
	type Token: NodeToken<Self>
	where
		Self: Sized;

	/// The custom data associated with this node.
	type Data;
	/// A type acting as a reference to the node's [data].
	///
	/// This is the type returned by [`data`].
	///
	/// [data]: Self::Data
	/// [`data`]: Self::data
	type DataRef<'data>
	where
		Self: 'data;
	/// A type acting as a mutable reference to the node's [data].
	///
	/// This is the type returned by [`data_mut`].
	///
	/// [data]: Self::Data
	/// [`data_mut`]: Self::data_mut
	type DataRefMut<'data>
	where
		Self: 'data;

	/// Creates a new node allocated in the given `arena` using the given `data`.
	///
	/// The node's [token] is returned.
	///
	/// [token]: Token
	fn new(arena: &mut Arena<Self::Base>, data: Self::Data) -> Self::Token
	where
		Self: Sized;

	/// Returns this node's [token].
	///
	/// [token]: Self::Token
	fn token(&self) -> Self::Token
	where
		Self: Sized;

	/// Returns the [token] of this node's parent.
	///
	/// If this node is the root node of its tree, that means it has no parent and thus [`None`] is
	/// returned.
	///
	/// [token]: Token
	fn parent(&self) -> Option<<<Self::Base as BaseNode>::Branch as Node>::Token>;

	/// Returns an iterator over the [tokens] of this node's ancestors.
	///
	/// This iterator begins with the node's [parent] and ends with the [root] node (i.e. the
	/// ancestor with no [parent]).
	///
	/// [tokens]: Self::Token
	/// [parent]: Self::parent
	/// [root]: Self::root
	#[inline(always)]
	fn ancestors<'node>(&'node self, arena: &'node Arena<Self::Base>) -> iter::Ancestors<'node, Self::Base>
	where
		Self: Sized,
	{
		iter::Ancestors::new(arena, self.parent())
	}

	/// Returns this node's root node.
	///
	/// The root node is the most distant [ancestor]; it is the only node in a tree that does not
	/// have a [parent].
	///
	/// If this node is the root node, [`RootToken::This`] is returned. Otherwise,
	/// [`RootToken::Ancestor`] is returned with the root node's token.
	///
	/// Internally, this method iterates over the node's [ancestors] to find the last one, so it is
	/// `O(n)` best, average, and worst case.
	///
	/// [ancestor]: Self::ancestors
	/// [parent]: Self::parent
	/// [ancestors]: Self::ancestors
	#[inline(always)]
	fn root<'node>(&'node self, arena: &'node Arena<Self::Base>) -> RootToken<Self>
	where
		Self: Sized,
	{
		match self.ancestors(arena).last() {
			Some(root) => RootToken::Ancestor(root),
			None => RootToken::This(self.token()),
		}
	}

	/// Returns a reference to the [data] associated with this node.
	///
	/// [data]: Self::Data
	fn data(&self) -> Self::DataRef<'_>;

	/// Returns a mutable reference to the [data] associated with this node.
	///
	/// [data]: Self::Data
	fn data_mut(&mut self) -> Self::DataRefMut<'_>;
}

#[derive(Debug)]
pub enum RootToken<N: Node> {
	Ancestor(<<N::Base as BaseNode>::Branch as Node>::Token),
	This(N::Token),
}

impl<N: Node> Idx for RootToken<N> {
	#[inline(always)]
	fn idx(&self) -> generational_arena::Index {
		match self {
			Self::Ancestor(token) => token.idx(),
			Self::This(token) => token.idx(),
		}
	}
}

impl<N: Node, I: Idx> PartialEq<I> for RootToken<N> {
	fn eq(&self, other: &I) -> bool {
		self.idx() == other.idx()
	}
}

impl<N: Node> Eq for RootToken<N> {}

impl<N: Node> Hash for RootToken<N> {
	#[inline(always)]
	fn hash<H: Hasher>(&self, state: &mut H) {
		self.idx().hash(state);
	}
}

impl<N: Node> Copy for RootToken<N> {}

impl<N: Node> Clone for RootToken<N> {
	fn clone(&self) -> Self {
		*self
	}
}

impl<N: Node> NodeToken<N::Base> for RootToken<N> {}

pub trait BaseNode: Node<Base = Self> {
	/// The representation of the node after it is removed from the [arena].
	///
	/// If this is a [branch node], this representation should include its children.
	///
	/// [arena]: Arena
	/// [branch node]: BranchNode
	type Representation;

	/// The type used for branch nodes.
	///
	/// This may be the base node itself, or a separate node type.
	type Branch: BranchNode;
	/// The type used for leaf nodes.
	///
	/// This may be the base node itself, or a separate node type.
	type Leaf: Node;

	/// Converts this node into its [representation].
	///
	/// If this is a [branch node], this node's children should be removed from the `arena` and
	/// included in the [representation].
	///
	/// [representation]: Self::Representation
	/// [branch node]: BranchNode
	fn into_representation(self, arena: &mut Arena<Self>) -> Self::Representation
	where
		Self: Sized;
}

#[cfg(feature = "deque")]
/// Removes the given children from the [branch node], returning their [representations].
///
/// [branch node]: BranchNodeDeque
/// [representations]: BaseNode::Representation
#[doc(cfg(feature = "deque"))]
pub(crate) fn remove_children_deque<Branch: BranchNodeDeque>(
	branch: &Branch,
	arena: &mut Arena<Branch::Base>,
) -> VecDeque<<Branch::Base as BaseNode>::Representation> {
	let mut children = VecDeque::new();

	for i in 0..branch.len() {
		children.push_back(
			arena
				.0
				.remove(branch[i].idx())
				.expect("tried to remove child but there was no such node in the `arena`")
				.into_representation(arena),
		);
	}

	children
}

/// Removes the given children from the [branch node], returning their [representations].
///
/// [branch node]: BranchNode
/// [representations]: BaseNode::Representation
pub(crate) fn remove_children_linked<Branch: BranchNode>(
	branch: &Branch,
	arena: &mut Arena<Branch::Base>,
) -> VecDeque<<Branch::Base as BaseNode>::Representation>
where
	Branch::Base: LinkedNode,
{
	let mut children = VecDeque::new();
	let mut child = branch.first();

	while let Some(token) = &child {
		let removed = arena
			.0
			.remove(token.idx())
			.expect("tried to remove child but there was no such node in the `arena`");

		child = removed.next();
		children.push_back(removed.into_representation(arena));
	}

	children
}

/// A [node] that is linked to its [previous] and [next] siblings.
///
/// [node]: Node
/// [previous]: Self::prev
/// [next]: Self::next
pub trait LinkedNode: Node
where
	Self::Base: LinkedNode,
{
	/// Returns the [token] of this node's previous sibling.
	///
	/// If this node is the first child of its [parent], that means there is no previous sibling and
	/// thus [`None`] is returned.
	///
	/// [token]: Self::Token
	/// [parent]: Self::parent
	fn prev(&self) -> Option<<Self::Base as Node>::Token>;
	/// Returns the [token] of this node's next sibling.
	///
	/// If this node is the last child of its [parent], that means there is no next sibling and thus
	/// [`None`] is returned.
	///
	/// [token]: Self::Token
	/// [parent]: Self::parent
	fn next(&self) -> Option<<Self::Base as Node>::Token>;

	/// Returns an iterator over the [tokens] of this node's preceding siblings.
	///
	/// This iterator begins with the [previous] node and ends with the [first child] of the
	/// [parent] node.
	///
	/// If this is the [first child], the iterator will be empty.
	///
	/// [tokens]: Self::Token
	/// [previous]: Self::prev
	/// [first child]: BranchNode::first
	/// [parent]: Self::parent
	fn preceding_siblings<'node>(&'node self, arena: &'node Arena<Self::Base>) -> iter::PrecedingSiblings<'node, Self>
	where
		Self: Sized,
	{
		iter::PrecedingSiblings::new(arena, self.prev())
	}
	/// Returns an iterator over the [tokens] of this node's following siblings.
	///
	/// This iterator begins with the [next] node and ends with the [last child] of the [parent]
	/// node.
	///
	/// If this is the [last child], the iterator will be empty.
	///
	/// [tokens]: Self::Token
	/// [next]: Self::next
	/// [last child]: BranchNode::last
	/// [parent]: Self::parent
	#[inline(always)]
	fn following_siblings<'node>(&'node self, arena: &'node Arena<Self::Base>) -> iter::FollowingSiblings<'node, Self>
	where
		Self: Sized,
	{
		iter::FollowingSiblings::new(arena, self.next())
	}
}

/// A [node] that can have [children].
///
/// [node]: Node
/// [children]: Self::children
pub trait BranchNode: Node {
	/// The iterator returned by [`children`].
	///
	/// [`children`]: Self::children
	type ChildrenIter<'branch>: DoubleEndedIterator<Item = <Self::Base as Node>::Token> + FusedIterator
	where
		Self: 'branch;

	/// Returns the [token] of this branch node's first child.
	///
	/// If this branch node has no children, [`None`] is returned.
	///
	/// [token]: Self::Token
	fn first(&self) -> Option<<Self::Base as Node>::Token>;
	/// Returns the [token] of this branch node's last child.
	///
	/// If this branch node has no children, [`None`] is returned.
	///
	/// [token]: Self::Token
	fn last(&self) -> Option<<Self::Base as Node>::Token>;

	// TODO: Should there be a separate version for linked branch nodes and `BranchNodeDeque`s? For
	//     : `BranchNodeDeque`s, `arena` is not necessary.
	/// Returns an iterator over the [tokens] of this branch node's children.
	///
	/// [tokens]: Self::Token
	fn children<'branch>(&'branch self, arena: &'branch Arena<Self::Base>) -> Self::ChildrenIter<'branch>;

	/// Returns an iterator over the [tokens] of this branch node's descendants.
	///
	/// This iterator is a breadth-first traversal of the branch node's descendants: its [children]
	/// are done first, then those [children]'s [children] in the same order, and so on and so on.
	///
	/// [tokens]: Node::Token
	/// [children]: Self::children
	#[inline(always)]
	fn descendants<'branch>(&'branch self, arena: &'branch Arena<Self::Base>) -> iter::Descendants<'branch, Self>
	where
		Self: Sized,
		for<'base> &'base Self: TryFrom<&'base Self::Base>,
	{
		iter::Descendants::new(&self, arena)
	}

	/// Returns whether this branch node has no children.
	fn is_empty(&self) -> bool;

	#[cfg_attrs {
		/// Detaches this branch node's [first child], returning its [token].
		///
		/// If this branch node is [empty] then there is no child to detach, so [`None`] is
		/// returned. Otherwise, the child is removed from this branch node's [children], but
		/// remains in the [arena].
		///
		/// This function is useful if you want to move a [node] from one [parent] to another.
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # See also
		/// The [last child] may also be detached using [`detach_back`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be detached by index using
			/// [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		///
		/// If you want to remove a child and its descendants from the [arena] altogether, see
		#[configure(
			feature = "deque",
			/// [`pop_front`], [`pop_back`], or, if this is a [`BranchNodeDeque`], [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		#[configure(
			not(feature = "deque"),
			/// [`pop_front`] and [`pop_back`].
		)]
		///
		/// [`detach_back`]: Self::detach_back
		///
		/// [`pop_front`]: Self::pop_front
		/// [`pop_back`]: Self::pop_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [token]: Node::Token
		/// [empty]: Self::is_empty
		/// [children]: Self::children
		/// [arena]: Arena
		/// [node]: Node
		/// [parent]: Node::parent
	}]
	fn detach_front(token: Self::Token, arena: &mut Arena<Self::Base>) -> Option<<Self::Base as Node>::Token>
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;
	#[cfg_attrs {
		/// Detaches this branch node's [last child], returning its [token].
		///
		/// If this branch node is [empty] then there is no child to detach, so [`None`] is
		/// returned. Otherwise, the child is removed from this branch node's [children], but
		/// remains in the [arena].
		///
		/// This function is useful if you want to move a [node] from one [parent] to another.
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # See also
		/// The [first child] may also be detached using [`detach_front`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be detached by index using
			/// [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		///
		/// If you want to remove a child and its descendants from the [arena] altogether, see
		#[configure(
			feature = "deque",
			/// [`pop_front`], [`pop_back`], or, if this is a [`BranchNodeDeque`], [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		#[configure(
			not(feature = "deque"),
			/// [`pop_front`] and [`pop_back`].
		)]
		///
		/// [`detach_front`]: Self::detach_front
		///
		/// [`pop_front`]: Self::pop_front
		/// [`pop_back`]: Self::pop_back
		/// [`remove`]: BranchNodeDeque::remove
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [token]: Node::Token
		/// [empty]: Self::is_empty
		/// [children]: Self::children
		/// [arena]: Arena
		/// [node]: Node
		/// [parent]: Node::parent
	}]
	fn detach_back(token: Self::Token, arena: &mut Arena<Self::Base>) -> Option<<Self::Base as Node>::Token>
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;

	#[cfg_attrs {
		/// Removes this branch node's [first child].
		///
		/// If this branch node is [empty] then there is no child to remove, so [`None`] is
		/// returned. Otherwise, the removed [node] is returned.
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # See also
		/// The [last child] may also be removed using [`pop_back`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be removed by index using
			/// [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		///
		/// If you don't want to remove a child from the [arena], but merely make it a [root node]
		/// or move it to another [parent], see
		#[configure(
			feature = "deque",
			/// [`detach_front`], [`detach_back`], or, if this is a [`BranchNodeDeque`], [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		#[configure(
			not(feature = "deque"),
			/// [`detach_front`] and [`detach_back`].
		)]
		///
		/// [`pop_back`]: Self::pop_back
		///
		/// [`detach_front`]: Self::detach_front
		/// [`detach_back`]: Self::detach_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [node]: BaseNode
		/// [empty]: Self::is_empty
		/// [token]: Self::Token
		/// [arena]: Arena
		/// [root node]: Self::root
		/// [parent]: Self::parent
	}]
	fn pop_front(token: Self::Token, arena: &mut Arena<Self::Base>) -> Option<<Self::Base as BaseNode>::Representation>
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;
	#[cfg_attrs {
		/// Removes this branch node's [last child].
		///
		/// If this branch node is [empty] then there is no child to remove, so [`None`] is
		/// returned. Otherwise, the removed [node] is returned.
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # See also
		/// The [first child] may also be removed using [`pop_front`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], children may also be removed by index using
			/// [`remove`].
			///
			/// [`remove`]: BranchNodeDeque::remove
		)]
		///
		/// If you don't want to remove a child from the [arena], but merely make it a [root node]
		/// or move it to another [parent], see
		#[configure(
			feature = "deque",
			/// [`detach_front`], [`detach_back`], or, if this is a [`BranchNodeDeque`], [`detach`].
			///
			/// [`detach`]: BranchNodeDeque::detach
		)]
		#[configure(
			not(feature = "deque"),
			/// [`detach_front`] and [`detach_back`].
		)]
		///
		/// [`pop_front`]: Self::pop_front
		///
		/// [`detach_front`]: Self::detach_front
		/// [`detach_back`]: Self::detach_back
		///
		/// [first child]: Self::first
		/// [last child]: Self::last
		/// [node]: BaseNode
		/// [empty]: Self::is_empty
		/// [token]: Self::Token
		/// [arena]: Arena
		/// [root node]: Self::root
		/// [parent]: Self::parent
	}]
	fn pop_back(token: Self::Token, arena: &mut Arena<Self::Base>) -> Option<<Self::Base as BaseNode>::Representation>
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;

	#[cfg_attrs {
		/// Pushes the given `new` [token]'s [node] to the beginning of this branch node's
		/// [children].
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # Panics
		/// This method will panic if the given `new` [token] refers to either:
		/// - this branch node's [root]; or
		/// - a [node] that already has a [parent].
		///
		/// # See also
		/// A child may also be pushed to the end with [`push_back`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], [children] may also be inserted by index using
			/// [`insert`].
			///
			/// [`insert`]: BranchNodeDeque::insert
		)]
		///
		/// [`push_back`]: Self::push_back
		///
		/// [token]: Self::Token
		/// [node]: BaseNode
		/// [children]: Self::children
		/// [root]: Self::root
		/// [parent]: Node::parent
	}]
	fn push_front(token: Self::Token, arena: &mut Arena<Self::Base>, new: <Self::Base as Node>::Token)
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;
	#[cfg_attrs {
		/// Pushes the given `new` [token]'s [node] to the end of this branch node's [children].
		///
		/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to
		/// avoid having multiple mutable references into the arena at a time.
		///
		/// # Panics
		/// This method will panic if the given `new` [token] refers to either:
		/// - this branch node's [root]; or
		/// - a [node] that already has a [parent].
		///
		/// # See also
		/// A child may also be pushed to the beginning with [`push_front`]. If this is a
		/// [`BranchNodeDeque`], children may also be inserted by index using [`insert`].
		#[configure(
			feature = "deque",
			/// If this is a [`BranchNodeDeque`], [children] may also be inserted by index using
			/// [`insert`].
			///
			/// [`insert`]: BranchNodeDeque::insert
		)]
		///
		/// [`push_front`]: Self::push_front
		///
		/// [token]: Self::Token
		/// [node]: BaseNode
		/// [children]: Self::children
		/// [root]: Self::root
		/// [parent]: Node::parent
	}]
	fn push_back(token: Self::Token, arena: &mut Arena<Self::Base>, new: <Self::Base as Node>::Token)
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;
}

#[cfg(feature = "deque")]
/// A [node] that stores its [children] as a [`VecDeque`], allowing them to be [indexed].
///
/// [node]: Node
/// [children]: Self::children
///
/// [indexed]: Index
#[doc(cfg(feature = "deque"))]
pub trait BranchNodeDeque: BranchNode
where
	Self: Index<usize, Output = <Self::Base as Node>::Token> + Sized,
{
	/// Returns the number of children this branch node has.
	fn len(&self) -> usize;

	/// Returns the [token] of the child at the given `index`.
	///
	/// If `index` is out of bounds, [`None`] is returned.
	///
	/// [token]: Node::Token
	#[inline]
	fn get(&self, index: usize) -> Option<<Self::Base as Node>::Token> {
		if index < self.len() {
			Some(self[index])
		} else {
			None
		}
	}

	/// Detaches the child at the given `index`, returning its [token].
	///
	/// This function is useful if you want to move a [node] from one [parent] to another.
	///
	/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to avoid
	/// having multiple mutable references into the [arena] at a time.
	///
	/// # Panics
	/// This method will panic if the given `index` is out of bounds.
	///
	/// # See also
	/// The [first child] or [last child] may be detached with [`detach_front`] and [`detach_back`]
	/// respectively.
	///
	/// If you want to remove a child and its descendents from the [arena] altogether, see
	/// [`remove`], [`pop_front`], or [`pop_back`].
	///
	/// [`detach_front`]: Self::detach_front
	/// [`detach_back`]: Self::detach_back
	///
	/// [`remove`]: Self::remove
	/// [`pop_front`]: Self::pop_front
	/// [`pop_back`]: Self::pop_back
	///
	/// [token]: Node::Token
	/// [node]: Node
	/// [arena]: Arena
	/// [parent]: Node::parent
	/// [first child]: Self::first
	/// [last child]: Self::last
	fn detach(token: Self::Token, arena: &mut Arena<Self::Base>, index: usize) -> <Self::Base as Node>::Token
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;

	/// Removes the child at the given `index`.
	///
	/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to avoid
	/// having multiple mutable references into the [arena] at a time.
	///
	/// # Panics
	/// This method will panic if the given `index` is out of bounds.
	///
	/// # See also
	/// The [first child] or [last child] may be removed with [`pop_front`] and [`pop_back`]
	/// respectively.
	///
	/// If you don't want to remove a child from the [arena], but merely make it a [root node] or
	/// move it to another [parent], see [`detach`], [`detach_front`], or [`detach_back`].
	///
	/// [`pop_front`]: Self::pop_front
	/// [`pop_back`]: Self::pop_back
	///
	/// [`detach`]: Self::detach
	/// [`detach_front`]: Self::detach_front
	/// [`detach_back`]: Self::detach_back
	///
	/// [token]: Self::Token
	/// [arena]: Arena
	/// [root node]: Self::root
	/// [first child]: Self::first
	/// [last child]: Self::last
	/// [parent]: Node::parent
	fn remove(
		token: Self::Token,
		arena: &mut Arena<Self::Base>,
		index: usize,
	) -> <Self::Base as BaseNode>::Representation
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;

	/// Inserts the given `new` [token]'s [node] at the given `index`.
	///
	/// This function takes its [token] as a parameter instead of `&mut self` as a receiver to avoid
	/// having multiple mutable references into the arena at a time.
	///
	/// # Panics
	/// This method will panic if:
	/// - the given `index` is greater than the [`len()`]; or
	/// - the given `new` [token] refers to either:
	///   - this branch node's [root]; or
	///   - a [node] that already has a [parent].
	///
	/// # See also
	/// A child can also be pushed to the beginning or end of this branch node's [children] with
	/// [`push_front`] and [`push_back`] respectively.
	///
	/// [children]: Self::children
	/// [`push_front`]: Self::push_front
	/// [`push_back`]: Self::push_back
	///
	/// [node]: BaseNode
	/// [token]: Self::Token
	/// [root]: Self::root
	/// [parent]: Node::parent
	///
	/// [`len()`]: Self::len
	fn insert(token: Self::Token, arena: &mut Arena<Self::Base>, index: usize, new: <Self::Base as Node>::Token)
	where
		Self: Sized,
		for<'base> &'base mut Self: TryFrom<&'base mut Self::Base>,
		for<'base> <&'base mut Self as TryFrom<&'base mut Self::Base>>::Error: Debug;
}

/// An arena in which nodes are allocated.
///
/// # Examples
/// TODO
#[derive(Debug, Default)]
pub struct Arena<Node>(pub(crate) generational_arena::Arena<Node>);

impl<Node> Arena<Node> {
	/// Creates a new, empty arena.
	pub fn new() -> Self {
		Self(generational_arena::Arena::new())
	}

	/// Creates a new, empty arena with the given initial `capacity`.
	///
	/// A number of nodes equal to the `capacity` may be allocated in the arena without allocating
	/// further memory for the arena itself.
	pub fn with_capacity(capacity: usize) -> Self {
		Self(generational_arena::Arena::with_capacity(capacity))
	}
}