token_string/
string.rs

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
// SPDX-FileCopyrightText: Copyright (C) 2024 Roland Csaszar
// SPDX-License-Identifier: MPL-2.0
//
// Project:  token-string
// File:     string.rs
// Date:     22.Nov.2024
// =============================================================================
//! The string type [`TokenString`].

extern crate alloc;

use alloc::string::ToString as _;
use alloc::vec;
use core::{borrow, cmp, fmt, hash, mem, ops, panic, slice, str};

use crate::{StringPtr, TkStrError};

/// The length of the prefix of the string, that is, the first bytes stored
/// in the field `prefix` for comparisons.
pub const PREFIX_LENGTH: usize = mem::size_of::<u64>() - mem::size_of::<u16>();

/// Helper constant for matching intervals.
const PREFIX_LENGTH_ADD1: usize = PREFIX_LENGTH + 1;

/// The length of the non-prefix part of a "small string", 8 bytes. The content
/// of the field `_d.small`.
pub const SMALL_DATA_LENGTH: usize = mem::size_of::<u64>();

/// The maximum length in bytes, not Unicode scalar values, of a "small" string
/// that is saved in the struct [`TokenString`] itself and not on the heap.
pub const MAX_LENGTH_SMALL: usize = PREFIX_LENGTH + SMALL_DATA_LENGTH;

/// Helper constant for matching intervals.
pub const MAX_LENGTH_SMALL_ADD1: usize = MAX_LENGTH_SMALL + 1;

/// The maximum length in bytes, not Unicode scalar values, of a
/// [`TokenString`].
pub const MAX_LENGTH: usize = u16::MAX as usize;

/// A string which can hold at most [`MAX_LENGTH`] bytes (not Unicode scalar
/// values).
///
/// This holds valid UTF-8 encoded strings only.
/// Strings that are short enough, which need at most [`MAX_LENGTH_SMALL`]
/// bytes, are stored in the struct itself, bigger ones use the heap.
///
/// # Invariant
///
/// - [`TokenString`] must be a UTF-8 string (like &[`prim@str`] and
///   [`alloc::string::String`]).
/// - The length of a [`TokenString`] is at most [`MAX_LENGTH`] and at least 0 -
///   the empty string.
#[repr(C)]
pub struct TokenString {
	/// The length of the string.
	///
	/// Maximum: [`MAX_LENGTH`].
	pub(crate) len: u16,
	/// The first [`PREFIX_LENGTH`] bytes of the string.
	pub(crate) prefix: [u8; PREFIX_LENGTH],
	/// The data (see [`Data`]).
	///
	/// If the string is at most [`MAX_LENGTH_SMALL`] bytes, this holds the
	/// other bytes of the string, else this is a pointer to the heap.
	pub(crate) u: Data,
}


// Invariants: [`TokenString`] must be aligned to 64 bits and its size must be
// 128 bits. That means that `sizeof len + prefix == 64 bit` and
// `sizeof u == 64 bit`. So there is no padding.

const _: () = assert!(
	mem::align_of::<TokenString>() == mem::size_of::<u64>(),
	"struct TokenString is not aligned to 64 bits!"
);
const _: () = assert!(
	mem::size_of::<TokenString>() == 2 * mem::size_of::<u64>(),
	"struct TokenString has size != 128 bits"
);
const _: () = assert!(
	mem::align_of::<Data>() == mem::size_of::<u64>(),
	"struct Data is not aligned to 64 bits!"
);
const _: () = assert!(
	mem::size_of::<Data>() == mem::size_of::<u64>(),
	"union Data has size != 64 bits"
);

// =============================================================================
// Inner types of `TokenString`.

/// This is either a pointer to the string, if the string is bigger than
/// [`SMALL_DATA_LENGTH`] bytes, or a pointer to a string as an array of bytes.
///
/// See [`StringPtr`]
#[repr(C)]
pub union Data {
	/// If the string is small enough (at most [`MAX_LENGTH_SMALL`]), its data
	/// after the prefix is here.
	pub(crate) small: [u8; SMALL_DATA_LENGTH],
	/// For bigger strings as [`MAX_LENGTH_SMALL`], this points to the memory
	/// holding the whole string.
	pub(crate) ptr: mem::ManuallyDrop<StringPtr>,
}

// =============================================================================
// `TokenString` itself

/// The empty string.
///
/// Has a length of zero.
pub const EMPTY: TokenString = TokenString {
	len: 0,
	prefix: [0_u8; PREFIX_LENGTH],
	u: Data {
		small: [0_u8; SMALL_DATA_LENGTH],
	},
};

// =============================================================================
// Traits

impl TryFrom<&str> for TokenString {
	type Error = TkStrError;

	/// Create a [`TokenString`] from a &[`prim@str`].
	///
	/// Return [`TkStrError::TooBig`] if the argument is greater than
	/// [`MAX_LENGTH`].
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `value` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	fn try_from(value: &str) -> Result<Self, Self::Error> {
		let bytes = value.as_bytes();
		match value.len() {
			| 0 => Ok(Self {
				len: 0,
				prefix: [0_u8; PREFIX_LENGTH],
				u: Data {
					small: [0_u8; SMALL_DATA_LENGTH],
				},
			}),
			| 1 ..= PREFIX_LENGTH => {
				let s = value.len();
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix[.. s].copy_from_slice(&bytes[.. s]);
				Ok(Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: s as u16,
					prefix,
					u: Data {
						small: [0_u8; SMALL_DATA_LENGTH],
					},
				})
			}
			| PREFIX_LENGTH_ADD1 ..= MAX_LENGTH_SMALL => {
				let s = value.len();
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix.copy_from_slice(&bytes[.. PREFIX_LENGTH]);
				let mut small = [0_u8; SMALL_DATA_LENGTH];
				small[.. s - PREFIX_LENGTH]
					.copy_from_slice(&bytes[PREFIX_LENGTH .. s]);
				Ok(Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: s as u16,
					prefix,
					u: Data { small },
				})
			}
			| MAX_LENGTH_SMALL_ADD1 ..= MAX_LENGTH => {
				let ptr = StringPtr::from(bytes);
				let u = Data {
					ptr: mem::ManuallyDrop::new(ptr),
				};
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix.copy_from_slice(&bytes[.. PREFIX_LENGTH]);
				Ok(Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: value.len() as u16,
					prefix,
					u,
				})
			}
			| _ => Err(TkStrError::TooBig(value.len())),
		}
	}
}

impl TryFrom<&[u8]> for TokenString {
	type Error = TkStrError;

	/// Try to create a [`TokenString`] from the given slice.
	///
	/// Return [`TkStrError::TooBig`] if the given slice is too big, greater
	/// than [`MAX_LENGTH`].
	/// Return [`TkStrError::UnicodeError`]
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `value` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	fn try_from(value: &[u8]) -> Result<Self, Self::Error> {
		match str::from_utf8(value) {
			| Ok(str) => Self::try_from(str),
			| Err(utf_err) => Err(TkStrError::UnicodeError(utf_err)),
		}
	}
}

impl TryFrom<&[char]> for TokenString {
	type Error = TkStrError;

	/// Try to create a [`TokenString`] from the given slice.
	///
	/// Return [`TkStrError::TooBig`] if the given slice is too big, greater
	/// than [`MAX_LENGTH`].
	///
	/// Memory
	///
	/// Allocates and deallocates a temporary [`alloc::string::String`]
	/// collecting the converted bytes.
	fn try_from(value: &[char]) -> Result<Self, Self::Error> {
		let i = value.iter();
		Self::try_from(i.collect::<alloc::string::String>())
	}
}

impl TryFrom<&alloc::string::String> for TokenString {
	type Error = TkStrError;

	/// Create a `TokenString` from a &[`alloc::string::String`].
	///
	/// Return [`TkStrError::TooBig`] if the argument is greater than
	/// [`MAX_LENGTH`].
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `value` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	fn try_from(value: &alloc::string::String) -> Result<Self, Self::Error> {
		let str = value.as_str();
		Self::try_from(str)
	}
}

impl TryFrom<alloc::string::String> for TokenString {
	type Error = TkStrError;

	/// Create a [`TokenString`] from a [`alloc::string::String`].
	///
	/// Return [`TkStrError::TooBig`] if the argument is greater than
	/// [`MAX_LENGTH`].
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `value` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	fn try_from(value: alloc::string::String) -> Result<Self, Self::Error> {
		// Sadly we can't use the string's data directly, as a [`String`] has a
		// capacity which is to be known when deallocating the data.
		// See [`String::into_raw_parts`].
		let str = value.as_str();
		Self::try_from(str)
	}
}

impl Drop for TokenString {
	#[cfg_attr(test, mutants::skip)]
	fn drop(&mut self) {
		if usize::from(self.len) > MAX_LENGTH_SMALL {
			// SAFETY:
			// We know that there is a pointer saved in the union.
			// The whole string is being dropped, so taking a mutable
			// reference of the pointer is legal.
			let mut m_ptr = unsafe { mem::ManuallyDrop::take(&mut self.u.ptr) };
			m_ptr.drop_manually(self.len.into());
		}
	}
}

impl Clone for TokenString {
	/// Return a clone of the [`TokenString`].
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `value` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	fn clone(&self) -> Self {
		let u = if self.len as usize > MAX_LENGTH_SMALL {
			Data {
				// SAFETY:
				// We check, that there is an allocated pointer saved in the
				// union.
				ptr: mem::ManuallyDrop::new(unsafe {
					self.u.ptr.clone_manually(self.len.into())
				}),
			}
		} else {
			Data {
				// SAFETY:
				// We check, that there is a small string in the union.
				small: unsafe { self.u.small },
			}
		};
		Self {
			len: self.len,
			prefix: self.prefix,
			u,
		}
	}
}

impl Default for TokenString {
	/// Return the empty string.
	fn default() -> Self {
		EMPTY
	}
}

impl Eq for TokenString {}

impl PartialEq for TokenString {
	fn eq(&self, other: &Self) -> bool {
		if self.len != other.len || self.prefix != other.prefix {
			return false;
		}

		if self.len as usize <= MAX_LENGTH_SMALL {
			// SAFETY:
			// We know we have two small strings to compare.
			unsafe { self.u.small == other.u.small }
		} else {
			// SAFETY:
			// We know we have two string pointers to compare.
			unsafe { self.u.ptr.eq_manually(&other.u.ptr, self.len.into()) }
		}
	}
}

impl PartialEq<[u8]> for TokenString {
	fn eq(&self, other: &[u8]) -> bool {
		if self.len as usize != other.len() {
			return false;
		}
		let len = self.len as usize;
		match len {
			| 0 => true,
			| 1 ..= PREFIX_LENGTH => self.prefix[.. len] == other[.. len],
			| PREFIX_LENGTH_ADD1 ..= MAX_LENGTH_SMALL => {
				// SAFETY:
				// Use the whole memory region of self.`prefix` and
				// `self.u.small` as a single array. This is not UB, as the
				// whole memory `TokenString` has been allocated at once and
				// is guaranteed to be continuous in memory. If Miri
				// complains about this, use the flag `MIRIFLAGS="
				// -Zmiri-tree-borrows"` to use "tree borrows" instead of
				// "stacked borrows".
				let bytes =
					unsafe { slice::from_raw_parts(self.prefix.as_ptr(), len) };
				bytes == other
			}
			// SAFETY:
			// We know that the pointer actually points to allocated memory.
			| MAX_LENGTH_SMALL_ADD1 ..= MAX_LENGTH => unsafe {
				self.u.ptr.as_slice_manually(len) == other
			},
			| _ => panic!("The TokenString is bigger than MAX_LENGTH!"),
		}
	}
}

impl PartialEq<str> for TokenString {
	fn eq(&self, other: &str) -> bool {
		self == other.as_bytes()
	}
}

impl PartialEq<alloc::string::String> for TokenString {
	fn eq(&self, other: &alloc::string::String) -> bool {
		self == other.as_bytes()
	}
}


impl Ord for TokenString {
	/// Compare two [`TokenString`]s byte-wise.
	///
	/// This is not a sensible alphabetical comparison for anything that isn't
	/// ASCII.
	fn cmp(&self, other: &Self) -> cmp::Ordering {
		let pref_ord = self.prefix.cmp(&other.prefix);
		if pref_ord != cmp::Ordering::Equal {
			return pref_ord;
		}

		self.suffix().cmp(other.suffix())
	}
}

impl PartialOrd for TokenString {
	/// Compare two [`TokenString`]s byte-wise.
	///
	/// This is not a sensible alphabetical comparison for anything that isn't
	/// ASCII.
	fn partial_cmp(&self, other: &Self) -> Option<cmp::Ordering> {
		Some(self.cmp(other))
	}
}

impl fmt::Display for TokenString {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		write!(f, "{}", self.as_str())
	}
}

impl fmt::Debug for TokenString {
	fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
		if self.len as usize > MAX_LENGTH_SMALL {
			let string =
			// SAFETY:
			// We know that the pointer points to a string.
				unsafe { self.u.ptr.as_string_manually(self.len.into()) };
			// SAFETY:
			// We know that the pointer points to a string.
			let ptr = unsafe { &self.u.ptr };
			f.debug_struct("TokenString")
				.field("len", &self.len)
				.field("prefix", &self.prefix_str())
				.field("ptr", ptr)
				.field("string", &string)
				.finish()
		} else {
			// SAFETY:
			// We've checked that this is a small string.
			unsafe {
				f.debug_struct("TokenString")
					.field("len", &self.len)
					.field("prefix", &self.prefix_str())
					.field("small", &self.small_str())
					.field("string", &self.as_str())
					.finish()
			}
		}
	}
}

impl<Idx> ops::Index<Idx> for TokenString
where
	Idx: slice::SliceIndex<str>,
{
	type Output = Idx::Output;

	fn index(&self, index: Idx) -> &Self::Output {
		self.as_str().index(index)
	}
}

impl borrow::Borrow<str> for TokenString {
	fn borrow(&self) -> &str {
		self.as_str()
	}
}

impl AsRef<str> for TokenString {
	fn as_ref(&self) -> &str {
		self.as_str()
	}
}

impl hash::Hash for TokenString {
	fn hash<H: core::hash::Hasher>(&self, state: &mut H) {
		self.as_str().hash(state);
	}
}

// SAFETY:
// There can be no shared references of a `TokenString`.
unsafe impl Send for TokenString {}

// SAFETY:
// `TokenString` is immutable.
unsafe impl Sync for TokenString {}

// =============================================================================
// Non trait methods

impl TokenString {
	/// Return the prefix as a `&[u8]`.
	fn prefix_str(&self) -> &[u8] {
		let l = cmp::min(self.len as usize, PREFIX_LENGTH);
		&self.prefix[.. l]
	}

	/// Return the suffix of a small string as a `&[u8]`.
	///
	/// # Safety
	///
	/// Must be called with a small string only!
	unsafe fn small_str(&self) -> &[u8] {
		let l = if self.len as usize > PREFIX_LENGTH {
			self.len as usize - PREFIX_LENGTH
		} else {
			0
		};
		// SAFETY:
		// We know that the union contains a small string.
		unsafe { &self.u.small[.. l] }
	}

	/// Return the length of the string in bytes.
	///
	/// This is the length of the string in bytes, not Unicode scalar values and
	/// not grapheme clusters.
	#[must_use]
	pub const fn len(&self) -> usize {
		self.len as usize
	}

	/// Return `true` if the string is a "small string", that is, it is saved in
	/// the [`TokenString`] struct itself.
	///
	/// If this returns `false`, the string is allocated on the heap.
	#[must_use]
	pub const fn is_small(&self) -> bool {
		self.len as usize <= MAX_LENGTH_SMALL
	}

	/// Return `true`, if this is the empty string.
	///
	/// Returns `false` else.
	#[must_use]
	pub const fn is_empty(&self) -> bool {
		self.len == 0
	}

	/// Convert to a [`TokenString`].
	///
	/// `bytes` must be valid UTF-8, use [`TokenString::try_from`] if you are
	/// not sure that it is valid. If the given byte slice is bigger than
	/// [`MAX_LENGTH`], this panics.
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `bytes` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	///
	/// # Panics
	///
	/// Panics if `bytes` is bigger than [`MAX_LENGTH`].
	///
	/// # Safety
	///
	/// `bytes` must be valid UTF-8, if not, all bets are off - UB!
	#[must_use]
	pub unsafe fn from_bytes_unchecked(bytes: &[u8]) -> Self {
		match bytes.len() {
			| 0 => Self {
				len: 0,
				prefix: [0_u8; PREFIX_LENGTH],
				u: Data {
					small: [0_u8; SMALL_DATA_LENGTH],
				},
			},
			| 1 ..= PREFIX_LENGTH => {
				let s = bytes.len();
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix[.. s].copy_from_slice(&bytes[.. s]);
				Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: s as u16,
					prefix,
					u: Data {
						small: [0_u8; SMALL_DATA_LENGTH],
					},
				}
			}
			| PREFIX_LENGTH_ADD1 ..= MAX_LENGTH_SMALL => {
				let s = bytes.len();
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix.copy_from_slice(&bytes[.. PREFIX_LENGTH]);
				let mut small = [0_u8; SMALL_DATA_LENGTH];
				small[.. s - PREFIX_LENGTH]
					.copy_from_slice(&bytes[PREFIX_LENGTH .. s]);
				Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: s as u16,
					prefix,
					u: Data { small },
				}
			}
			| MAX_LENGTH_SMALL_ADD1 ..= MAX_LENGTH => {
				let ptr = StringPtr::from(bytes);
				let u = Data {
					ptr: mem::ManuallyDrop::new(ptr),
				};
				let mut prefix = [0_u8; PREFIX_LENGTH];
				prefix.copy_from_slice(&bytes[.. PREFIX_LENGTH]);
				Self {
					#[expect(
						clippy::cast_possible_truncation,
						reason = "Length has been checked above"
					)]
					len: bytes.len() as u16,
					prefix,
					u,
				}
			}
			| _ => panic!(
				"This byte slice is too big for a TokenString, {} > \
				 {MAX_LENGTH}",
				bytes.len()
			),
		}
	}

	/// Convert to a [`TokenString`].
	///
	/// If the given string `s` is bigger than [`MAX_LENGTH`], this panics. Use
	/// [`TokenString::try_from`] for a function that does not panic. The string
	/// `s` must be valid UTF-8 too, but it has already been UB if it isn't.
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `s` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	///
	/// # Panics
	///
	/// Panics if `s` is bigger than [`MAX_LENGTH`].
	#[must_use]
	pub fn from_str_unchecked(s: &str) -> Self {
		// SAFETY:
		// The unsafe part of `from_bytes_unchecked` is the possibility of the
		// byte slice not being valid UTF-8. We are processing an UTF-8 string
		// here.
		unsafe { Self::from_bytes_unchecked(s.as_bytes()) }
	}

	/// Convert to a [`TokenString`].
	///
	/// If the given string `s` is bigger than [`MAX_LENGTH`], this panics. Use
	/// [`TokenString::try_from`] for a function that does not panic. The string
	/// `s` must be valid UTF-8 too, but it has already been UB if it isn't.
	///
	/// Memory:
	///
	/// Allocates if and only if the length of `s` is bigger than
	/// [`MAX_LENGTH_SMALL`].
	///
	/// # Panics
	///
	/// Panics if `s` is bigger than [`MAX_LENGTH`].
	#[must_use]
	pub fn from_string_unchecked(s: &alloc::string::String) -> Self {
		// SAFETY:
		// The unsafe part of `from_bytes_unchecked` is the possibility of the
		// byte slice not being valid UTF-8. We are processing an UTF-8 string
		// here.
		unsafe { Self::from_bytes_unchecked(s.as_bytes()) }
	}

	/// Return the string as a &[`prim@str`].
	#[must_use]
	pub fn as_str(&self) -> &str {
		if self.len == 0 {
			""
		} else if self.len as usize > MAX_LENGTH_SMALL {
			// SAFETY:
			// We know, that in the union must be a valid pointer.
			unsafe { self.u.ptr.as_string_manually(self.len.into()) }
		} else {
			// SAFETY:
			// Use the whole memory region of self.`prefix` and `self.u.small`
			// as a single array. This is not UB, as the whole memory
			// `TokenString` has been allocated at once and is guaranteed to be
			// continuous in memory. If Miri complains about this, use the
			// flag `MIRIFLAGS="-Zmiri-tree-borrows"` to use "tree borrows"
			// instead of "stacked borrows".
			let bytes = unsafe {
				slice::from_raw_parts(self.prefix.as_ptr(), self.len.into())
			};
			// SAFETY:
			// The precondition of `TokenString` is that the string is a valid
			// UTF-8 byte sequence.
			unsafe { str::from_utf8_unchecked(bytes) }
		}
	}

	/// Return the string as a byte slice.
	#[must_use]
	pub fn as_bytes(&self) -> &[u8] {
		if self.len == 0 {
			Default::default()
		} else if self.len as usize > MAX_LENGTH_SMALL {
			// SAFETY:
			// We know, that in the union must be a valid pointer.
			unsafe { self.u.ptr.as_slice_manually(self.len.into()) }
		} else {
			// SAFETY:
			// Use the whole memory region of self.`prefix` and `self.u.small`
			// as a single array. This is not UB, as the whole memory
			// `TokenString` has been allocated at once and is guaranteed to be
			// continuous in memory. If Miri complains about this, use the
			// flag `MIRIFLAGS="-Zmiri-tree-borrows"` to use "tree borrows"
			// instead of "stacked borrows".
			unsafe {
				slice::from_raw_parts(self.prefix.as_ptr(), self.len.into())
			}
		}
	}

	/// Return the string as a new [`alloc::string::String`].
	///
	/// Memory:
	///
	/// Allocates a new [`alloc::string::String`].
	#[must_use]
	pub fn as_string(&self) -> alloc::string::String {
		self.to_string()
	}

	/// Return the string as a new vector of [`char`]s.
	///
	/// Memory:
	///
	/// Allocates a new [`vec::Vec`].
	#[must_use]
	pub fn as_chars(&self) -> vec::Vec<char> {
		self.as_str().chars().collect()
	}

	/// Return the part of the string which is not stored in `self.prefix`.
	///
	/// If the string is <= [`PREFIX_LENGTH`], the empty slice is returned.
	fn suffix(&self) -> &[u8] {
		match self.len as usize {
			| 0 ..= PREFIX_LENGTH => Default::default(),
			| PREFIX_LENGTH_ADD1 ..= MAX_LENGTH_SMALL =>
			// SAFETY:
			// We checked and know that this is a small string.
			unsafe { &self.u.small },
			| MAX_LENGTH_SMALL_ADD1 ..= MAX_LENGTH =>
			// SAFETY:
			// We checked and know that this string is allocated on the heap.
			unsafe {
				&self.u.ptr.as_slice_manually(self.len.into())[PREFIX_LENGTH ..]
			},
			| _ => panic!(
				"Error: this TokenString is bigger than \
				 TokenString::MAX_LENGTH!"
			),
		}
	}

	/// Return the byte at index `idx`, check bounds.
	///
	/// Returns [`TkStrError::OutOfBounds`] if the index is bigger than the
	/// string's length.
	///
	/// # Errors
	/// [`TkStrError::OutOfBounds`] if `idx` is bigger than the string's length.
	pub fn get(&self, idx: u16) -> Result<u8, TkStrError> {
		if idx >= self.len {
			return Err(TkStrError::OutOfBounds(idx as usize));
		}
		// SAFETY:
		// We check above that the index is in bounds.
		unsafe { Ok(*self.as_bytes().get_unchecked(idx as usize)) }
	}

	/// Return the byte at index `idx`, don't check bounds.
	///
	/// Panics if the index is bigger than the
	/// string's length.
	///
	/// # Panics
	///
	/// if `idx` is bigger than the string's length.
	#[must_use]
	pub fn get_unchecked(&self, idx: u16) -> u8 {
		assert!((idx < self.len), "index {idx} out of bounds");
		// SAFETY:
		// We check above that the index is in bounds.
		unsafe { *self.as_bytes().get_unchecked(idx as usize) }
	}

	/// Return an iterator over the `[char]`s of a string.
	///
	/// That is, an iterator over the Unicode scalar values of the
	/// `TokenString`.
	pub fn chars(&self) -> str::Chars {
		self.as_str().chars()
	}

	/// Get a reference iterator.
	#[must_use]
	pub fn iter(&self) -> TokenStringIter<'_> {
		<&Self as IntoIterator>::into_iter(self)
	}

	/// Return `true`, if the first byte is an uppercase ASCII character.
	#[must_use]
	pub const fn starts_ascii_uppercase(&self) -> bool {
		self.prefix[0].is_ascii_uppercase()
	}

	/// Return `true`, if the first byte is an lowercase ASCII character.
	#[must_use]
	pub const fn starts_ascii_lowercase(&self) -> bool {
		self.prefix[0].is_ascii_lowercase()
	}

	/// Return `true`, if the string contains only ASCII characters.
	#[must_use]
	pub fn is_ascii(&self) -> bool {
		self.as_bytes().is_ascii()
	}

	/// Return `true`, if the string starts with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn starts_with(&self, needle: &Self) -> bool {
		self.as_bytes().starts_with(needle.as_bytes())
	}

	/// Return `true`, if the string starts with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn starts_with_bytes(&self, needle: &[u8]) -> bool {
		self.as_bytes().starts_with(needle)
	}

	/// Return `true`, if the string starts with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn starts_with_str(&self, needle: &str) -> bool {
		self.as_str().starts_with(needle)
	}

	/// Return `true`, if the string ends with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn ends_with(&self, needle: &Self) -> bool {
		self.as_bytes().ends_with(needle.as_bytes())
	}

	/// Return `true`, if the string ends with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn ends_with_bytes(&self, needle: &[u8]) -> bool {
		self.as_bytes().ends_with(needle)
	}

	/// Return `true`, if the string ends with `needle`.
	///
	/// Returns `true` too if the string is `needle`.
	#[must_use]
	pub fn ends_with_str(&self, needle: &str) -> bool {
		self.as_str().ends_with(needle)
	}

	/// Map the given function `f` over the bytes of the string, mutating it.
	fn map_bytes_mut(&mut self, f: fn(&mut [u8]) -> ()) {
		if self.len as usize > MAX_LENGTH_SMALL {
			// SAFETY:
			// We check, that we actually have a valid pointer.
			unsafe {
				f((*self.u.ptr).as_slice_manually_mut(self.len as usize));
			}
		} else {
			// SAFETY:
			// The two arrays, `prefix` and `small`, are guaranteed to be
			// continuous in memory.
			unsafe {
				f(slice::from_raw_parts_mut(
					self.prefix.as_mut_ptr(),
					self.len as usize,
				));
			}
		}
	}

	/// Return a new string with all uppercase ASCII characters changed to
	/// lowercase.
	#[must_use]
	pub fn to_ascii_lowercase(&self) -> Self {
		let mut ret_val = self.clone();
		ret_val.map_bytes_mut(<[u8]>::make_ascii_lowercase);
		ret_val
	}

	/// Return a new string with all lowercase ASCII characters changed to
	/// uppercase.
	#[must_use]
	pub fn to_ascii_uppercase(&self) -> Self {
		let mut ret_val = self.clone();
		ret_val.map_bytes_mut(<[u8]>::make_ascii_uppercase);
		ret_val
	}

	/// Return a new string with all ASCII whitespace removed from the start and
	/// end.
	#[must_use]
	pub fn trim_ascii(&self) -> Self {
		// SAFETY:
		// We copy the current string, so the invariants should hold for the
		// copy too. The string does not get longer, so cannot be greater than
		// `MAX_LENGTH`.
		unsafe { Self::from_bytes_unchecked(self.as_bytes().trim_ascii()) }
	}

	/// Return a new string with all ASCII whitespace removed from the start.
	#[must_use]
	pub fn trim_ascii_start(&self) -> Self {
		// SAFETY:
		// We copy the current string, so the invariants should hold for the
		// copy too:
		// - The string does not get longer, so cannot be greater than
		// `MAX_LENGTH`.
		// - if the string is valid UTF-8, removing ASCII characters does not
		//   change that.
		unsafe {
			Self::from_bytes_unchecked(self.as_bytes().trim_ascii_start())
		}
	}

	/// Return a new string with all ASCII whitespace removed from the end.
	#[must_use]
	pub fn trim_ascii_end(&self) -> Self {
		// SAFETY:
		// We copy the current string, so the invariants should hold for the
		// copy too:
		// - The string does not get longer, so cannot be greater than
		// `MAX_LENGTH`.
		// - if the string is valid UTF-8, removing ASCII characters does not
		//   change that.
		unsafe { Self::from_bytes_unchecked(self.as_bytes().trim_ascii_end()) }
	}

	/// Return a new string with `prefix` removed from the start.
	#[cfg(feature = "pattern")]
	#[doc(cfg(pattern))]
	pub fn strip_prefix<P: str::pattern::Pattern>(
		&self,
		prefix: P,
	) -> Option<Self> {
		self.as_str()
			.strip_prefix(prefix)
			// stripping a prefix should not make the string invalid UTF-8, and
			// does shorten it.
			.map(Self::from_str_unchecked)
	}

	/// Return a new string with `suffix` removed from the end.
	#[cfg(feature = "pattern")]
	#[doc(cfg(pattern))]
	pub fn strip_suffix<P>(&self, suffix: P) -> Option<Self>
	where
		P: str::pattern::Pattern,
		for<'a> P::Searcher<'a>: str::pattern::ReverseSearcher<'a>,
	{
		self.as_str()
			.strip_suffix(suffix)
			// stripping a suffix should not make the string invalid UTF-8, and
			// does shorten it.
			.map(Self::from_str_unchecked)
	}

	/// Return `true` if the string contains the pattern `pat`.
	///
	/// Returns `false` else.
	///
	/// The feature
	#[cfg(feature = "pattern")]
	#[doc(cfg(pattern))]
	pub fn contains<P: str::pattern::Pattern>(&self, pat: P) -> bool {
		self.as_str().contains(pat)
	}
}


//==============================================================================
// Iterating by reference

/// Iterator struct for a `&TokenString`.
///
/// Iterator items are single bytes, `u8`.
pub struct TokenStringIter<'a> {
	/// The [`TokenString`] to iterate over.
	string: &'a TokenString,
	/// The current index in the string.
	idx: usize,
}

impl<'a> TokenStringIter<'a> {
	/// Generate a reference iterator for the given [`TokenString`].
	#[must_use]
	pub const fn new(s: &'a TokenString) -> Self {
		TokenStringIter { string: s, idx: 0 }
	}
}

impl Iterator for TokenStringIter<'_> {
	type Item = u8;

	/// Return either the next byte, [`u8`], or [`None`] if we are at the end of
	/// the string.
	fn next(&mut self) -> Option<Self::Item> {
		debug_assert!(
			self.idx <= self.string.len.into(),
			"The iterator index '{0}' is greater than the string length '{1}'!",
			self.idx,
			self.string.len
		);
		if self.idx == self.string.len.into() {
			None
		} else if self.string.len as usize > MAX_LENGTH_SMALL {
			self.idx += 1;
			Some(self.string.as_bytes()[self.idx - 1])
		} else {
			self.idx += 1;
			Some(
				// SAFETY:
				// The two arrays, `prefix` and `u.small`, are guaranteed to be
				// consecutive in memory and allocated at the same time.
				unsafe {
					slice::from_raw_parts(
						self.string.prefix.as_ptr(),
						self.string.len as usize,
					)
				}[self.idx - 1],
			)
		}
	}
}

impl<'a> IntoIterator for &'a TokenString {
	type IntoIter = TokenStringIter<'a>;
	type Item = u8;

	fn into_iter(self) -> Self::IntoIter {
		Self::IntoIter::new(self)
	}
}

//==============================================================================
// Iterating an owned `TokenString`.

/// Iterator struct for an owned [`TokenString`].
///
/// Iterator items are single bytes, [`u8`].
pub struct TokenStringIterOwn {
	/// The [`TokenString`] to iterate over.
	string: TokenString,
	/// The current index in the string.
	idx: usize,
}

impl TokenStringIterOwn {
	/// Generate an owned iterator for the given [`TokenString`].
	#[must_use]
	pub const fn new(s: TokenString) -> Self {
		Self { string: s, idx: 0 }
	}
}

impl Iterator for TokenStringIterOwn {
	type Item = u8;

	/// Return either the next byte, [`u8`], or [`None`] if we are at the end of
	/// the string.
	fn next(&mut self) -> Option<Self::Item> {
		debug_assert!(
			self.idx <= self.string.len.into(),
			"The iterator index '{0}' is greater than the string length '{1}'!",
			self.idx,
			self.string.len
		);
		if self.idx == self.string.len.into() {
			None
		} else if self.string.len as usize > MAX_LENGTH_SMALL {
			self.idx += 1;
			Some(self.string.as_bytes()[self.idx - 1])
		} else {
			self.idx += 1;
			Some(
				// SAFETY:
				// The two arrays, `prefix` and `u.small`, are guaranteed to be
				// consecutive in memory and allocated at the same time.
				unsafe {
					slice::from_raw_parts(
						self.string.prefix.as_ptr(),
						self.string.len as usize,
					)
				}[self.idx - 1],
			)
		}
	}
}

impl IntoIterator for TokenString {
	type IntoIter = TokenStringIterOwn;
	type Item = u8;

	fn into_iter(self) -> Self::IntoIter {
		Self::IntoIter::new(self)
	}
}


// =============================================================================
//                                  Tests
// =============================================================================

#[cfg(test)]
mod prefix {
	extern crate std;
	use assert2::{check, let_assert};

	use crate::TokenString;


	#[test]
	fn empty_is_empty() {
		let_assert!(Ok(res) = TokenString::try_from(""));
		check!(res.prefix[0] == 0);
		check!(res.len == 0);
		check!(res.is_small() == true);
	}

	#[test]
	fn clone_empty() {
		let_assert!(Ok(s1) = TokenString::try_from(""));
		#[expect(
			clippy::redundant_clone,
			reason = "this clone isn't redundant?!"
		)]
		let res = s1.clone();
		check!(res.prefix[0] == s1.prefix[0]);
		check!(res.len == s1.len);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_str() {
		let_assert!(Ok(res) = TokenString::try_from("123456"));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn clone() {
		let_assert!(Ok(s1) = TokenString::try_from("123456"));
		#[expect(
			clippy::redundant_clone,
			reason = "this clone isn't redundant?!"
		)]
		let res = s1.clone();
		check!(&res.prefix[0 .. 6] == &s1.prefix[0 .. 6]);
		check!(res.len == s1.len);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_bytes() {
		let s1: &[u8] = b"123456";
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_chars() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::vec::Vec<char> = "123456".chars().collect();
		let_assert!(Ok(res) = TokenString::try_from(s1.as_slice()));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_string() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "123456".into();
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_stringref() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "123456".into();
		let_assert!(Ok(res) = TokenString::try_from(&s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn from_str_unchecked() {
		let res = TokenString::from_str_unchecked("123456");
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
	}

	#[test]
	fn from_bytes_unchecked() {
		let s1: &[u8] = b"123456";
		// SAFETY:
		// We know that the string is valid UTF-8.
		let res = unsafe { TokenString::from_bytes_unchecked(s1) };
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}

	#[test]
	fn from_stringref_unchecked() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "123456".into();
		let res = TokenString::from_string_unchecked(&s1);
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(res.len == 6);
		check!(res.is_small() == true);
	}
}

#[cfg(test)]
mod small {
	extern crate std;
	use assert2::{check, let_assert};

	use crate::TokenString;


	#[test]
	fn try_from_str() {
		let_assert!(Ok(res) = TokenString::try_from("1234567"));
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn clone() {
		let_assert!(Ok(s1) = TokenString::try_from("1234567"));
		#[expect(
			clippy::redundant_clone,
			reason = "this clone isn't redundant?!"
		)]
		let res = s1.clone();
		check!(&res.prefix[0 .. 6] == &s1.prefix[0 .. 6]);
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] == s1.u.small[0] });
		check!(res.len == s1.len);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_bytes() {
		let s1: &[u8] = b"1234567";
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_chars() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::vec::Vec<char> = "1234567".chars().collect();
		let_assert!(Ok(res) = TokenString::try_from(s1.as_slice()));
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_string() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567".into();
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn try_from_stringref() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567".into();
		let_assert!(Ok(res) = TokenString::try_from(&s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn from_str_unchecked() {
		let res = TokenString::from_str_unchecked("1234567");
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn from_bytes_unchecked() {
		let s1: &[u8] = b"1234567";
		// SAFETY:
		// We know that the string is valid UTF-8.
		let res = unsafe { TokenString::from_bytes_unchecked(s1) };
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}

	#[test]
	fn from_stringref_unchecked() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567".into();
		let res = TokenString::from_string_unchecked(&s1);
		check!(&res.prefix[0 .. 6] == b"123456");
		// SAFETY:
		// We know there is a small string in the union.
		check!(unsafe { res.u.small[0] } == b'7');
		check!(res.len == 7);
		check!(res.is_small() == true);
	}
}

#[cfg(test)]
mod heap {
	extern crate std;
	use assert2::{check, let_assert};

	use crate::TokenString;


	#[test]
	fn try_from_str() {
		let_assert!(Ok(res) = TokenString::try_from("1234567890ABCDE"));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}


	#[test]
	fn clone() {
		let_assert!(Ok(s1) = TokenString::try_from("1234567890ABCDE"));
		#[expect(
			clippy::redundant_clone,
			reason = "this clone isn't redundant?!"
		)]
		let res = s1.clone();
		check!(&res.prefix[0 .. 6] == &s1.prefix[0 .. 6]);
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe {
				res.u.ptr.as_slice_manually(res.len as usize)[.. 15]
					== s1.u.ptr.as_slice_manually(res.len as usize)[.. 15]
			}
		);
		check!(res.len == s1.len);
		check!(res.is_small() == false);
	}

	#[test]
	fn try_from_bytes() {
		let s1: &[u8] = b"1234567890ABCDE";
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn try_from_chars() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::vec::Vec<char> = "1234567890ABCDE".chars().collect();
		let_assert!(Ok(res) = TokenString::try_from(s1.as_slice()));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn try_from_string() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567890ABCDE".into();
		let_assert!(Ok(res) = TokenString::try_from(s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn try_from_stringref() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567890ABCDE".into();
		let_assert!(Ok(res) = TokenString::try_from(&s1));
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn from_str_unchecked() {
		let res = TokenString::from_str_unchecked("1234567890ABCDE");
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn from_bytes_unchecked() {
		let s1: &[u8] = b"1234567890ABCDE";
		// SAFETY:
		// We know that the string is valid UTF-8.
		let res = unsafe { TokenString::from_bytes_unchecked(s1) };
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}

	#[test]
	fn from_stringref_unchecked() {
		#[expect(
			clippy::std_instead_of_alloc,
			reason = "We are testing, this needs std"
		)]
		let s1: std::string::String = "1234567890ABCDE".into();
		let res = TokenString::from_string_unchecked(&s1);
		check!(&res.prefix[0 .. 6] == b"123456");
		check!(
			// SAFETY:
			// We know there is a large string in the union.
			unsafe { &res.u.ptr.as_slice_manually(res.len as usize)[.. 15] }
				== b"1234567890ABCDE"
		);
		check!(res.len == 15);
		check!(res.is_small() == false);
	}
}