multi-trait 1.0.3

Common traits for multiformats types
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
128
129
130
131
132
133
134
135
136
137
138
139
140
141
142
143
144
145
146
147
148
149
150
151
152
153
154
155
156
157
158
159
160
161
162
163
164
165
166
167
168
169
170
171
172
173
174
175
176
177
178
179
180
181
182
183
184
185
186
187
188
189
190
191
192
193
194
195
196
197
198
199
200
201
202
203
204
205
206
207
208
209
210
211
212
213
214
215
216
217
218
219
220
221
222
223
224
225
226
227
228
229
230
231
232
233
234
235
236
237
238
239
240
241
242
243
244
245
246
247
248
249
250
251
252
253
254
255
256
257
258
259
260
261
262
263
264
265
266
267
268
269
270
271
272
273
274
275
276
277
278
279
280
281
282
283
284
285
286
287
288
289
290
291
292
293
294
295
296
297
298
299
300
301
302
303
304
305
306
307
308
309
310
311
312
313
314
315
316
317
318
319
320
321
322
323
324
325
326
327
328
329
330
331
332
333
334
335
336
337
338
339
340
341
342
343
344
345
346
347
348
349
350
351
352
353
354
355
356
357
358
359
360
361
362
363
364
365
366
367
368
369
370
371
372
373
374
375
376
377
378
379
380
381
382
383
384
385
386
387
388
389
390
391
392
393
394
395
396
397
398
399
400
401
402
403
404
405
406
407
408
409
410
411
412
413
414
415
416
417
418
419
420
421
422
423
424
425
426
427
428
429
430
431
432
433
434
435
436
437
438
439
440
441
442
443
444
445
446
447
448
449
450
451
452
453
454
455
456
457
458
459
460
461
462
463
464
465
466
467
468
469
470
471
472
473
474
475
476
477
478
479
480
481
482
483
484
485
486
487
488
489
490
491
492
493
494
495
496
497
498
499
500
501
502
503
504
505
506
507
508
509
510
511
512
513
514
515
516
517
518
519
520
521
522
523
524
525
526
527
528
529
530
531
532
533
534
535
536
537
538
539
540
541
542
543
544
545
546
547
548
549
550
551
552
553
554
555
556
557
558
559
560
561
562
563
564
565
566
567
568
569
570
571
572
573
574
575
576
577
578
579
580
581
582
583
584
585
586
587
588
589
590
591
592
593
594
595
596
597
598
599
600
601
602
603
604
605
606
607
608
609
610
611
612
613
614
615
616
617
618
619
620
621
622
623
624
625
626
627
628
629
630
631
632
633
634
635
636
637
638
639
640
641
642
643
644
645
646
647
648
649
650
651
652
653
654
655
656
657
658
659
660
661
662
663
664
665
666
667
668
669
670
671
672
673
674
675
676
677
678
679
680
681
682
683
684
685
686
687
688
689
690
691
692
693
694
695
696
697
698
699
700
701
702
703
704
705
706
707
708
709
710
711
712
713
714
715
716
717
718
719
720
721
722
723
724
725
726
727
728
729
730
731
732
733
734
735
736
737
738
739
740
741
742
743
744
745
746
747
748
749
750
751
752
753
754
755
756
757
758
759
760
761
762
763
764
765
766
767
768
769
770
771
772
773
774
775
776
777
778
779
780
781
782
783
784
785
786
787
788
789
790
791
792
793
794
795
796
797
798
799
800
801
802
803
804
805
806
807
808
809
810
811
812
813
814
815
816
817
818
819
820
821
822
823
824
825
826
827
828
829
830
831
832
833
834
835
836
837
838
839
840
841
842
843
844
845
846
847
848
849
850
851
852
853
854
855
856
857
858
859
860
861
862
863
864
865
866
867
868
869
870
871
872
873
874
875
876
877
878
879
880
881
882
883
884
885
886
887
888
889
890
891
892
893
894
895
896
897
898
899
900
901
902
903
904
905
906
907
908
909
910
911
912
913
914
915
916
917
918
919
920
921
922
923
924
925
926
927
928
929
930
931
932
933
934
935
936
937
938
939
940
941
942
943
944
945
946
947
948
949
950
951
952
953
954
955
956
957
958
959
960
961
962
963
964
965
966
967
968
969
970
971
972
973
974
975
976
977
978
979
980
981
982
983
984
985
986
987
988
989
990
991
992
993
994
995
996
997
998
999
1000
1001
1002
1003
1004
1005
1006
1007
1008
1009
1010
1011
1012
1013
1014
1015
1016
1017
1018
1019
1020
1021
1022
1023
1024
1025
1026
1027
1028
1029
1030
1031
1032
1033
1034
1035
1036
1037
1038
1039
1040
1041
1042
1043
1044
1045
1046
1047
1048
1049
1050
1051
1052
1053
1054
1055
1056
1057
1058
1059
1060
1061
1062
1063
1064
1065
1066
1067
1068
1069
1070
1071
1072
1073
1074
1075
1076
1077
1078
1079
1080
1081
1082
1083
1084
1085
1086
1087
1088
1089
1090
1091
1092
1093
1094
1095
1096
1097
1098
1099
1100
1101
1102
1103
1104
1105
1106
1107
1108
1109
1110
1111
1112
1113
1114
1115
1116
1117
1118
1119
1120
1121
1122
1123
1124
1125
1126
1127
1128
1129
1130
1131
1132
1133
1134
1135
1136
1137
1138
1139
1140
1141
1142
1143
1144
1145
1146
1147
1148
1149
1150
1151
1152
1153
1154
1155
1156
1157
1158
1159
1160
1161
1162
1163
1164
1165
1166
1167
1168
1169
1170
1171
1172
1173
1174
1175
1176
1177
1178
1179
1180
1181
1182
1183
1184
1185
1186
1187
1188
1189
1190
1191
1192
1193
1194
1195
1196
1197
1198
1199
1200
1201
1202
1203
1204
1205
1206
1207
1208
1209
1210
1211
1212
1213
1214
1215
1216
1217
1218
1219
1220
1221
1222
1223
1224
1225
1226
1227
1228
1229
1230
1231
1232
1233
1234
1235
1236
1237
1238
1239
1240
1241
1242
1243
1244
1245
1246
1247
1248
1249
1250
1251
1252
1253
1254
1255
1256
1257
1258
1259
1260
1261
1262
1263
1264
1265
1266
1267
1268
1269
1270
1271
1272
1273
1274
1275
1276
1277
1278
1279
1280
1281
1282
1283
1284
1285
1286
1287
1288
1289
1290
1291
1292
1293
1294
1295
1296
1297
1298
1299
1300
1301
1302
1303
1304
1305
1306
1307
1308
1309
1310
1311
1312
1313
1314
1315
1316
1317
1318
1319
1320
1321
1322
1323
1324
1325
1326
1327
1328
1329
1330
1331
1332
1333
1334
1335
1336
1337
1338
1339
1340
1341
1342
1343
1344
1345
1346
1347
1348
1349
1350
1351
1352
1353
1354
1355
1356
1357
1358
1359
1360
1361
1362
1363
1364
1365
1366
1367
1368
1369
1370
1371
1372
1373
1374
1375
1376
1377
1378
1379
1380
1381
1382
1383
1384
1385
1386
1387
1388
1389
1390
1391
1392
1393
1394
1395
1396
1397
1398
1399
1400
1401
1402
1403
1404
1405
1406
1407
1408
1409
1410
1411
1412
1413
1414
1415
1416
1417
1418
1419
1420
1421
1422
1423
1424
1425
1426
1427
1428
1429
1430
1431
1432
1433
1434
1435
1436
1437
1438
1439
1440
1441
1442
1443
1444
1445
1446
1447
1448
1449
1450
1451
1452
1453
1454
1455
1456
1457
1458
1459
1460
1461
1462
1463
1464
1465
1466
1467
1468
1469
1470
1471
1472
1473
1474
1475
1476
1477
1478
1479
1480
1481
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
// SPDX-License-Identifier: Apache-2.0
//! # Multitrait
//!
//! A lightweight, high-performance library providing common traits for implementing
//! [multiformats](https://github.com/multiformats/multiformats) types in Rust.
//!
//! ## Overview
//!
//! This crate provides core traits that standardize encoding, decoding, and
//! null value handling across multiformats implementations:
//!
//! ### Encoding Traits
//!
//! - **[`EncodeInto`]**: Encode values into compact varint `Vec<u8>` format
//! - **[`EncodeIntoBuffer`]**: Zero-allocation encoding into existing buffers
//! - **[`EncodeIntoArray`]**: Stack-based encoding for `no_std` environments
//!
//! ### Decoding Traits
//!
//! - **[`TryDecodeFrom`]**: Fallibly decode values from byte slices with remainder tracking
//!
//! ### Null Value Traits
//!
//! - **[`Null`]**: Define and check for null/default values
//! - **[`TryNull`]**: Fallible version of `Null` for types requiring validation
//!
//! ### Validated Types
//!
//! - **[`EncodedBytes`]**: Validated newtype for varint-encoded byte sequences
//!
//! ## Features
//!
//! - **Zero-copy decoding**: `TryDecodeFrom` returns remaining bytes without allocation
//! - **Zero-allocation encoding**: `EncodeIntoBuffer` reuses existing buffers
//! - **Stack-based encoding**: `EncodeIntoArray` for `embedded/no_std` contexts
//! - **Optimized encoding**: Single-allocation encoding with efficient varint compression
//! - **`no_std` support**: Works in embedded and constrained environments (with `alloc`)
//! - **Type-safe errors**: Structured error types with proper error chains
//! - **Thread-safe**: All traits are `Send + Sync` safe
//!
//! ## Quick Start
//!
//! ```rust
//! use multi_trait::{EncodeInto, TryDecodeFrom};
//!
//! // Encoding: Convert a value to compact varint bytes
//! let value = 42u32;
//! let encoded = value.encode_into();
//! println!("Encoded {} as {:?}", value, encoded);
//!
//! // Decoding: Parse bytes back to original value
//! let (decoded, remaining) = u32::try_decode_from(&encoded).unwrap();
//! assert_eq!(decoded, value);
//! assert!(remaining.is_empty());
//! ```
//!
//! ## Encoding Example
//!
//! The [`EncodeInto`] trait provides efficient varint encoding:
//!
//! ```rust
//! use multi_trait::EncodeInto;
//!
//! // Small values use fewer bytes
//! assert_eq!(0u8.encode_into(), vec![0]);
//! assert_eq!(127u8.encode_into(), vec![127]);
//! assert_eq!(128u8.encode_into(), vec![128, 1]); // Requires 2 bytes
//!
//! // Works with all unsigned integer types
//! let large_value = 0xFFFF_FFFF_u32;
//! let encoded = large_value.encode_into();
//! println!("Encoded 0x{:X} in {} bytes", large_value, encoded.len());
//! ```
//!
//! ## Decoding Example
//!
//! The [`TryDecodeFrom`] trait enables zero-copy parsing with error handling:
//!
//! ```rust
//! use multi_trait::TryDecodeFrom;
//!
//! // Decode from byte slice
//! let bytes = vec![0xFF, 0xFF, 0x03]; // Varint encoding of 65535
//! let (value, remaining) = u16::try_decode_from(&bytes).unwrap();
//! assert_eq!(value, 65535);
//! assert!(remaining.is_empty());
//!
//! // Handle errors gracefully
//! let empty: &[u8] = &[];
//! let result = u8::try_decode_from(empty);
//! assert!(result.is_err());
//! ```
//!
//! ## Null Value Handling
//!
//! Define sentinel/null values for custom types:
//!
//! ```rust
//! use multi_trait::Null;
//!
//! struct MyId(u64);
//!
//! impl Null for MyId {
//!     fn null() -> Self {
//!         MyId(0)
//!     }
//!
//!     fn is_null(&self) -> bool {
//!         self.0 == 0
//!     }
//! }
//!
//! let null_id = MyId::null();
//! assert!(null_id.is_null());
//!
//! let valid_id = MyId(12345);
//! assert!(!valid_id.is_null());
//! ```
//!
//! ## Error Handling
//!
//! All decode operations return a [`Result`] with a structured [`Error`] type:
//!
//! ```rust
//! use multi_trait::{TryDecodeFrom, Error};
//!
//! let truncated = vec![0xFF]; // Incomplete varint
//! match u16::try_decode_from(&truncated) {
//!     Ok((value, _)) => println!("Decoded: {}", value),
//!     Err(Error::UnsignedVarintDecode { source }) => {
//!         eprintln!("Decode failed: {}", source);
//!     }
//!     Err(e) => eprintln!("Other error: {}", e),
//! }
//! ```
//!
//! ## Buffer-Based Encoding (Zero Allocation)
//!
//! The [`EncodeIntoBuffer`] trait enables encoding without allocations:
//!
//! ```rust
//! use multi_trait::EncodeIntoBuffer;
//!
//! // Create a reusable buffer
//! let mut buffer = Vec::with_capacity(100);
//!
//! // Encode multiple values with no additional allocations
//! 42u8.encode_into_buffer(&mut buffer);
//! 1000u16.encode_into_buffer(&mut buffer);
//! 100000u32.encode_into_buffer(&mut buffer);
//!
//! // All three values encoded in one buffer
//! println!("Encoded {} bytes", buffer.len());
//! ```
//!
//! ## Stack-Based Encoding (No Heap)
//!
//! The [`EncodeIntoArray`] trait provides stack-only encoding for embedded systems:
//!
//! ```rust
//! use multi_trait::EncodeIntoArray;
//!
//! // Encode to stack-allocated array (no heap)
//! let (array, len) = 42u8.encode_into_array();
//! assert_eq!(&array[..len], &[42]);
//!
//! // Maximum sizes known at compile time
//! assert_eq!(<u32 as EncodeIntoArray>::MAX_ENCODED_SIZE, 5);
//! ```
//!
//! ## Type Safety with Validated Newtypes
//!
//! The [`EncodedBytes`] newtype provides compile-time guarantees that bytes
//! represent valid varint encodings:
//!
//! ```rust
//! use multi_trait::EncodedBytes;
//!
//! // Validation happens at construction
//! let valid = vec![42u8];
//! let encoded = EncodedBytes::try_from(valid).unwrap();
//!
//! // Invalid data is rejected
//! let invalid = vec![0x80]; // Truncated varint
//! assert!(EncodedBytes::try_from(invalid).is_err());
//!
//! // Type system ensures valid data
//! fn process_encoded(data: EncodedBytes) {
//!     // No need to validate - type guarantees validity
//!     println!("Processing {} bytes", data.len());
//! }
//! ```
//!
//! ## Performance Characteristics
//!
//! - **`EncodeInto`**: Single allocation, O(1) complexity for finding varint length
//! - **`EncodeIntoBuffer`**: Zero allocations (reuses buffer capacity), ideal for hot paths
//! - **`EncodeIntoArray`**: Zero heap allocations (stack only), deterministic performance
//! - **`TryDecodeFrom`**: Zero allocations, returns slice references
//! - **Varint format**: Compact representation, 1-10 bytes per integer depending on value
//!
//! ## Thread Safety
//!
//! All traits and types in this crate are `Send + Sync`, making them safe to use
//! in concurrent contexts. This section documents the thread-safety guarantees.
//!
//! ### Trait Implementations
//!
//! All trait implementations (`EncodeInto`, `TryDecodeFrom`, `Null`, `TryNull`)
//! are stateless and immutable, providing these guarantees:
//!
//! - **`Send`**: Values can be transferred between threads
//! - **`Sync`**: References can be shared between threads
//! - **No locks required**: All operations are lock-free
//! - **No data races**: No mutable state is shared
//!
//! ### Type Safety
//!
//! The [`EncodedBytes`] newtype is explicitly marked as `Send + Sync`:
//!
//! ```rust
//! use multi_trait::EncodedBytes;
//! use std::sync::Arc;
//! use std::thread;
//!
//! let encoded = EncodedBytes::new(&[42]).unwrap();
//! let shared = Arc::new(encoded);
//!
//! // Can be shared across threads safely
//! let handles: Vec<_> = (0..4)
//!     .map(|_| {
//!         let data = Arc::clone(&shared);
//!         thread::spawn(move || {
//!             assert_eq!(&data[..], &[42]);
//!         })
//!     })
//!     .collect();
//!
//! for handle in handles {
//!     handle.join().unwrap();
//! }
//! ```
//!
//! ### Concurrency Patterns
//!
//! Common patterns that work safely:
//!
//! - **Parallel encoding**: Multiple threads can encode different values simultaneously
//! - **Shared decoding**: Multiple threads can decode from the same source data
//! - **Pipeline processing**: Encode in one thread, decode in another
//! - **Work stealing**: Tasks can move between threads freely
//!
//! ## Feature Flags
//!
//! - **`std`** (default): Enables standard library support
//!   - Disable for `no_std` environments: `default-features = false`
//!   - Requires `alloc` when disabled (for `Vec<u8>` support)
//!
//! ## `no_std` Support
//!
//! This crate works in `no_std` environments with `alloc`:
//!
//! ```toml
//! [dependencies]
//! multitrait = { version = "1.0", default-features = false }
//! ```
//!
//! ## Implementation Details
//!
//! The crate uses production-quality declarative macros to eliminate code duplication
//! while maintaining zero runtime overhead. All encoding/decoding implementations
//! are generated at compile time with full type safety.
#![warn(missing_docs)]
#![deny(
    unsafe_code,
    trivial_casts,
    trivial_numeric_casts,
    unused_import_braces,
    unused_qualifications
)]
#![cfg_attr(not(feature = "std"), no_std)]

#[cfg(not(feature = "std"))]
extern crate alloc;

/// Errors generated from the implementations
pub mod error;
pub use error::Error;

/// `EncodeInto` trait
pub mod enc_into;
pub use enc_into::EncodeInto;

/// EncodeIntoBuffer trait for zero-allocation encoding
pub mod enc_into_buffer;
pub use enc_into_buffer::EncodeIntoBuffer;

/// EncodeIntoArray trait for stack-based encoding
pub mod enc_into_array;
pub use enc_into_array::EncodeIntoArray;

/// Null and `TryNull` traits
pub mod null;
pub use null::{Null, TryNull};

/// `TryDecodeFrom` trait
pub mod try_decode_from;
pub use try_decode_from::TryDecodeFrom;

/// Validated newtype for encoded bytes
pub mod encoded_bytes;
pub use encoded_bytes::EncodedBytes;

/// one-stop shop for all exported symbols
pub mod prelude {
    pub use super::{
        enc_into::*, enc_into_array::*, enc_into_buffer::*, encoded_bytes::*, null::*,
        try_decode_from::*,
    };
}

#[cfg(test)]
mod test {
    #![allow(
        clippy::cast_possible_truncation,
        clippy::cast_sign_loss,
        clippy::items_after_statements,
        clippy::significant_drop_tightening,
        clippy::needless_collect
    )]
    use super::prelude::*;

    #[test]
    fn test_bool() {
        let tbuf = true.encode_into();
        let (tval, _) = bool::try_decode_from(&tbuf).unwrap();
        assert!(tval);
        let fbuf = false.encode_into();
        let (fval, _) = bool::try_decode_from(&fbuf).unwrap();
        assert!(!fval);
    }

    #[test]
    fn test_u8() {
        let buf = 0xff_u8.encode_into();
        let (num, _) = u8::try_decode_from(&buf).unwrap();
        assert_eq!(0xff_u8, num);
    }

    #[test]
    fn test_u16() {
        let buf = 0xffee_u16.encode_into();
        let (num, _) = u16::try_decode_from(&buf).unwrap();
        assert_eq!(0xffee_u16, num);
    }

    #[test]
    fn test_u32() {
        let buf = 0xffee_ddcc_u32.encode_into();
        let (num, _) = u32::try_decode_from(&buf).unwrap();
        assert_eq!(0xffee_ddcc_u32, num);
    }

    #[test]
    fn test_u64() {
        let buf = 0xffee_ddcc_bbaa_9988_u64.encode_into();
        let (num, _) = u64::try_decode_from(&buf).unwrap();
        assert_eq!(0xffee_ddcc_bbaa_9988_u64, num);
    }

    #[test]
    fn test_u128() {
        let buf = 0xffee_ddcc_bbaa_9988_7766_5544_3322_1100_u128.encode_into();
        let (num, _) = u128::try_decode_from(&buf).unwrap();
        assert_eq!(0xffee_ddcc_bbaa_9988_7766_5544_3322_1100_u128, num);
    }

    #[cfg(target_pointer_width = "64")]
    #[test]
    fn test_usize() {
        let buf = 0xffee_ddcc_bbaa_9988_usize.encode_into();
        let (num, _) = usize::try_decode_from(&buf).unwrap();
        assert_eq!(0xffee_ddcc_bbaa_9988_usize, num);
    }

    #[cfg(target_pointer_width = "32")]
    #[test]
    fn test_usize() {
        let buf = 0xffeeddcc_usize.encode_into();
        let (num, _) = usize::try_decode_from(&buf).unwrap();
        assert_eq!(0xffeeddcc_usize, num);
    }

    struct Foo(usize);

    impl Null for Foo {
        fn null() -> Self {
            Self(0)
        }
        fn is_null(&self) -> bool {
            self.0 == 0
        }
    }

    impl TryNull for Foo {
        type Error = &'static str;

        fn try_null() -> Result<Self, Self::Error> {
            Ok(Self(0))
        }
        fn is_null(&self) -> bool {
            self.0 == 0
        }
    }

    #[test]
    fn test_null_value() {
        let f = Foo::null();
        assert!(Null::is_null(&f));
    }

    #[test]
    fn test_try_null_value() {
        let f = Foo::try_null().unwrap();
        assert!(TryNull::is_null(&f));
    }

    // ========================================================================
    // Error Case Tests
    // ========================================================================

    #[test]
    fn test_decode_empty_slice_u8() {
        let empty: &[u8] = &[];
        let result = u8::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_empty_slice_u16() {
        let empty: &[u8] = &[];
        let result = u16::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_empty_slice_u32() {
        let empty: &[u8] = &[];
        let result = u32::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_empty_slice_u64() {
        let empty: &[u8] = &[];
        let result = u64::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_empty_slice_u128() {
        let empty: &[u8] = &[];
        let result = u128::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_empty_slice_bool() {
        let empty: &[u8] = &[];
        let result = bool::try_decode_from(empty);
        assert!(result.is_err(), "Should fail to decode from empty slice");
    }

    #[test]
    fn test_decode_truncated_varint() {
        // A varint with continuation bit set but no following byte
        let truncated = vec![0x80]; // MSB set, indicates more bytes follow
        let result = u16::try_decode_from(&truncated);
        assert!(result.is_err(), "Should fail on truncated varint");
    }

    #[test]
    fn test_decode_truncated_large_varint() {
        // Incomplete multi-byte varint
        let truncated = vec![0xFF, 0xFF]; // Two bytes with continuation bits
        let result = u32::try_decode_from(&truncated);
        assert!(result.is_err(), "Should fail on truncated large varint");
    }

    // ========================================================================
    // Edge Case Tests
    // ========================================================================

    #[test]
    fn test_encode_decode_zero_values() {
        // Test zero value for all types
        assert_eq!(0u8.encode_into(), vec![0]);
        assert_eq!(0u16.encode_into(), vec![0]);
        assert_eq!(0u32.encode_into(), vec![0]);
        assert_eq!(0u64.encode_into(), vec![0]);
        assert_eq!(0u128.encode_into(), vec![0]);
        assert_eq!(0usize.encode_into(), vec![0]);

        // Verify decode
        let (val, rest) = u8::try_decode_from(&[0]).unwrap();
        assert_eq!(val, 0);
        assert!(rest.is_empty());
    }

    #[test]
    fn test_encode_decode_max_u8() {
        let max = u8::MAX;
        let encoded = max.encode_into();
        let (decoded, remaining) = u8::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, max);
        assert!(remaining.is_empty());
    }

    #[test]
    fn test_encode_decode_max_u16() {
        let max = u16::MAX;
        let encoded = max.encode_into();
        let (decoded, remaining) = u16::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, max);
        assert!(remaining.is_empty());
    }

    #[test]
    fn test_encode_decode_max_u32() {
        let max = u32::MAX;
        let encoded = max.encode_into();
        let (decoded, remaining) = u32::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, max);
        assert!(remaining.is_empty());
    }

    #[test]
    fn test_encode_decode_max_u64() {
        let max = u64::MAX;
        let encoded = max.encode_into();
        let (decoded, remaining) = u64::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, max);
        assert!(remaining.is_empty());
    }

    #[test]
    fn test_encode_decode_max_u128() {
        let max = u128::MAX;
        let encoded = max.encode_into();
        let (decoded, remaining) = u128::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, max);
        assert!(remaining.is_empty());
    }

    #[test]
    fn test_varint_boundary_127() {
        // 127 should encode in 1 byte (last value that fits in 7 bits)
        let val = 127u8;
        let encoded = val.encode_into();
        assert_eq!(encoded.len(), 1);
        let (decoded, _) = u8::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, val);
    }

    #[test]
    fn test_varint_boundary_128() {
        // 128 should require 2 bytes (first value needing continuation)
        let val = 128u8;
        let encoded = val.encode_into();
        assert_eq!(encoded.len(), 2);
        let (decoded, _) = u8::try_decode_from(&encoded).unwrap();
        assert_eq!(decoded, val);
    }

    #[test]
    fn test_bool_nonzero_as_true() {
        // Any non-zero value should decode as true
        let bytes = vec![42];
        let (val, _) = bool::try_decode_from(&bytes).unwrap();
        assert!(val);
    }

    // ========================================================================
    // Round-Trip Tests
    // ========================================================================

    #[test]
    fn test_roundtrip_u8_range() {
        // Test a range of u8 values
        for value in [0, 1, 127, 128, 255] {
            let encoded = value.encode_into();
            let (decoded, remaining) = u8::try_decode_from(&encoded).unwrap();
            assert_eq!(decoded, value, "Round-trip failed for u8 value {value}");
            assert!(remaining.is_empty());
        }
    }

    #[test]
    fn test_roundtrip_u16_range() {
        // Test various u16 values including boundaries
        for value in [0, 1, 127, 128, 255, 256, 16383, 16384, 65535] {
            let encoded = value.encode_into();
            let (decoded, remaining) = u16::try_decode_from(&encoded).unwrap();
            assert_eq!(decoded, value, "Round-trip failed for u16 value {value}");
            assert!(remaining.is_empty());
        }
    }

    #[test]
    fn test_roundtrip_u32_range() {
        // Test various u32 values
        for value in [0, 1, 127, 128, 16384, 65536, u32::MAX] {
            let encoded = value.encode_into();
            let (decoded, remaining) = u32::try_decode_from(&encoded).unwrap();
            assert_eq!(decoded, value, "Round-trip failed for u32 value {value}");
            assert!(remaining.is_empty());
        }
    }

    #[test]
    fn test_roundtrip_u64_range() {
        // Test various u64 values
        for value in [0, 1, 127, 128, 65536, u64::from(u32::MAX), u64::MAX] {
            let encoded = value.encode_into();
            let (decoded, remaining) = u64::try_decode_from(&encoded).unwrap();
            assert_eq!(decoded, value, "Round-trip failed for u64 value {value}");
            assert!(remaining.is_empty());
        }
    }

    #[test]
    fn test_roundtrip_bool() {
        for value in [true, false] {
            let encoded = value.encode_into();
            let (decoded, remaining) = bool::try_decode_from(&encoded).unwrap();
            assert_eq!(decoded, value, "Round-trip failed for bool {value}");
            assert!(remaining.is_empty());
        }
    }

    #[test]
    fn test_sequential_decode() {
        // Encode multiple values into one buffer
        let mut buffer = Vec::new();
        buffer.extend_from_slice(&42u8.encode_into());
        buffer.extend_from_slice(&1000u16.encode_into());
        buffer.extend_from_slice(&100_000_u32.encode_into());

        // Decode sequentially
        let (val1, rest) = u8::try_decode_from(&buffer).unwrap();
        assert_eq!(val1, 42);

        let (val2, rest) = u16::try_decode_from(rest).unwrap();
        assert_eq!(val2, 1000);

        let (val3, rest) = u32::try_decode_from(rest).unwrap();
        assert_eq!(val3, 100_000);

        assert!(rest.is_empty(), "Should have consumed all bytes");
    }

    #[test]
    fn test_remaining_bytes_returned() {
        // Verify that decode returns unconsumed bytes
        let mut buffer = Vec::new();
        buffer.extend_from_slice(&42u8.encode_into());
        buffer.extend_from_slice(&[0xFF, 0xEE, 0xDD]); // Extra bytes

        let (val, remaining) = u8::try_decode_from(&buffer).unwrap();
        assert_eq!(val, 42);
        assert_eq!(remaining, &[0xFF, 0xEE, 0xDD]);
    }

    #[test]
    fn test_encode_length_efficiency() {
        // Verify varint encoding is space-efficient
        assert_eq!(0u8.encode_into().len(), 1);
        assert_eq!(127u8.encode_into().len(), 1);
        assert_eq!(128u8.encode_into().len(), 2);
        assert_eq!(255u8.encode_into().len(), 2);

        // Larger values should use more bytes
        assert!(u16::MAX.encode_into().len() > 1);
        assert!(u32::MAX.encode_into().len() > 2);
    }

    // ========================================================================
    // Property-Based Tests (using proptest)
    // ========================================================================

    use proptest::prelude::*;

    proptest! {
        #[test]
        fn prop_roundtrip_u8(value: u8) {
            let encoded = value.encode_into();
            let (decoded, remaining) = u8::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_u16(value: u16) {
            let encoded = value.encode_into();
            let (decoded, remaining) = u16::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_u32(value: u32) {
            let encoded = value.encode_into();
            let (decoded, remaining) = u32::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_u64(value: u64) {
            let encoded = value.encode_into();
            let (decoded, remaining) = u64::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_u128(value: u128) {
            let encoded = value.encode_into();
            let (decoded, remaining) = u128::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_usize(value: usize) {
            let encoded = value.encode_into();
            let (decoded, remaining) = usize::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_roundtrip_bool(value: bool) {
            let encoded = value.encode_into();
            let (decoded, remaining) = bool::try_decode_from(&encoded).unwrap();
            prop_assert_eq!(decoded, value);
            prop_assert!(remaining.is_empty());
        }

        #[test]
        fn prop_encode_not_empty(value: u32) {
            let encoded = value.encode_into();
            prop_assert!(!encoded.is_empty());
        }

        #[test]
        fn prop_encode_deterministic(value: u64) {
            let encoded1 = value.encode_into();
            let encoded2 = value.encode_into();
            prop_assert_eq!(encoded1, encoded2);
        }

        #[test]
        fn prop_small_values_compact(value in 0u32..128) {
            let encoded = value.encode_into();
            prop_assert_eq!(encoded.len(), 1, "Values under 128 should encode in 1 byte");
        }

        #[test]
        fn prop_sequential_decode(v1: u8, v2: u16, v3: u32) {
            let mut buffer = Vec::new();
            buffer.extend_from_slice(&v1.encode_into());
            buffer.extend_from_slice(&v2.encode_into());
            buffer.extend_from_slice(&v3.encode_into());

            let (d1, rest) = u8::try_decode_from(&buffer).unwrap();
            prop_assert_eq!(d1, v1);

            let (d2, rest) = u16::try_decode_from(rest).unwrap();
            prop_assert_eq!(d2, v2);

            let (d3, rest) = u32::try_decode_from(rest).unwrap();
            prop_assert_eq!(d3, v3);

            prop_assert!(rest.is_empty());
        }
    }

    // ========================================================================
    // Thread-Safety Tests (Compile-Time Verification)
    // ========================================================================

    /// Compile-time verification that Error is Send + Sync
    #[test]
    fn assert_error_send_sync() {
        fn is_send<T: Send>() {}
        fn is_sync<T: Sync>() {}
        is_send::<crate::Error>();
        is_sync::<crate::Error>();
    }

    /// Compile-time verification that `EncodedBytes` is Send + Sync
    #[test]
    fn assert_encoded_bytes_send_sync() {
        fn is_send<T: Send>() {}
        fn is_sync<T: Sync>() {}
        is_send::<EncodedBytes>();
        is_sync::<EncodedBytes>();
    }

    #[test]
    fn test_encoded_bytes_valid() {
        let bytes = vec![42];
        let encoded = EncodedBytes::try_from(bytes).unwrap();
        assert_eq!(encoded.as_ref(), &[42]);
    }

    #[test]
    fn test_encoded_bytes_invalid_empty() {
        let empty: Vec<u8> = vec![];
        assert!(EncodedBytes::try_from(empty).is_err());
    }

    #[test]
    fn test_encoded_bytes_invalid_truncated() {
        let truncated = vec![0x80];
        assert!(EncodedBytes::try_from(truncated).is_err());
    }

    #[test]
    fn test_encoded_bytes_into_vec() {
        // Use a single varint encoding (128 requires 2 bytes: [0x80, 0x01])
        let original = 128u8.encode_into();
        let encoded = EncodedBytes::new(&original).unwrap();
        let recovered: Vec<u8> = encoded.into();
        assert_eq!(recovered, original);
    }

    #[cfg(feature = "std")]
    #[test]
    fn test_encoded_bytes_thread_safe() {
        use std::sync::Arc;
        use std::thread;

        let encoded = EncodedBytes::new(&[42]).unwrap();
        let shared = Arc::new(encoded);

        let handles: Vec<_> = (0..4)
            .map(|_| {
                let data = Arc::clone(&shared);
                thread::spawn(move || {
                    assert_eq!(&data[..], &[42]);
                })
            })
            .collect();

        for handle in handles {
            handle.join().unwrap();
        }
    }

    // ========================================================================
    // Security Tests - Malicious Input Handling
    // ========================================================================

    #[test]
    fn security_test_all_continuation_bits() {
        // All bytes have continuation bit set (0xFF = all 1s)
        let malicious = vec![0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF, 0xFF];
        let result = u64::try_decode_from(&malicious);
        // Should fail due to too many bytes or overflow
        assert!(
            result.is_err(),
            "Should reject all-continuation-bit sequence"
        );
    }

    #[test]
    fn security_test_maximum_length_varint_u64() {
        // u64::MAX encoded as varint (10 bytes)
        let max_encoded = u64::MAX.encode_into();
        assert_eq!(max_encoded.len(), 10);
        let (decoded, remaining) = u64::try_decode_from(&max_encoded).unwrap();
        assert_eq!(decoded, u64::MAX);
        assert!(remaining.is_empty());
    }

    #[test]
    fn security_test_maximum_length_varint_u128() {
        // u128::MAX encoded as varint (19 bytes)
        let max_encoded = u128::MAX.encode_into();
        assert_eq!(max_encoded.len(), 19);
        let (decoded, remaining) = u128::try_decode_from(&max_encoded).unwrap();
        assert_eq!(decoded, u128::MAX);
        assert!(remaining.is_empty());
    }

    #[test]
    fn security_test_single_byte_with_continuation() {
        // Single byte with continuation bit but no follow-up
        let malicious = vec![0x80];
        assert!(u8::try_decode_from(&malicious).is_err());
        assert!(u16::try_decode_from(&malicious).is_err());
        assert!(u32::try_decode_from(&malicious).is_err());
        assert!(u64::try_decode_from(&malicious).is_err());
    }

    #[test]
    fn security_test_multiple_continuation_bytes_truncated() {
        // Multiple continuation bytes that end prematurely
        let malicious = vec![0xFF, 0xFF, 0xFF];
        assert!(u32::try_decode_from(&malicious).is_err());
    }

    #[test]
    fn security_test_encoded_bytes_rejects_invalid() {
        // Test that EncodedBytes rejects various invalid inputs

        // Empty
        assert!(EncodedBytes::try_from(vec![]).is_err());

        // Truncated varint
        assert!(EncodedBytes::try_from(vec![0x80]).is_err());

        // Trailing bytes after valid varint
        let mut with_trailing = vec![42];
        with_trailing.extend_from_slice(&[0xFF, 0xEE]);
        assert!(EncodedBytes::try_from(with_trailing).is_err());

        // All continuation bits
        assert!(EncodedBytes::try_from(vec![0xFF, 0xFF, 0xFF]).is_err());
    }

    #[test]
    fn security_test_buffer_encoding_no_overflow() {
        // Ensure buffer encoding doesn't overflow with many values
        let mut buffer = Vec::new();

        // Encode 1000 values
        for i in 0u16..1000 {
            i.encode_into_buffer(&mut buffer);
        }

        // Should have successfully encoded without panic
        assert!(buffer.len() > 1000); // At least 1 byte per value, some more
        assert!(buffer.len() < 3000); // At most 3 bytes per u16 value
    }

    #[test]
    fn security_test_array_encoding_bounds() {
        // Verify array encoding respects bounds for max values
        let (array, len) = u128::MAX.encode_into_array();
        assert!(len <= 19, "u128::MAX should not exceed 19 bytes");

        // Verify the encoded data is valid
        let (decoded, _) = u128::try_decode_from(&array[..len]).unwrap();
        assert_eq!(decoded, u128::MAX);
    }

    #[test]
    fn security_test_bool_decode_nonzero_values() {
        // Any non-zero value within u8 range should decode as true
        let nonzero_values = vec![
            vec![1],          // 1
            vec![42],         // 42
            vec![127],        // 127
            vec![0xFF, 0x01], // 255 (max u8)
        ];

        for bytes in nonzero_values {
            let (val, _) = bool::try_decode_from(&bytes).unwrap();
            assert!(val, "Non-zero value {bytes:?} should decode as true");
        }

        // Zero should decode as false
        let (val, _) = bool::try_decode_from(&[0]).unwrap();
        assert!(!val);
    }

    #[test]
    fn security_test_zero_length_slice_rejection() {
        // Zero-length slices should be rejected for all types
        let empty: &[u8] = &[];

        assert!(u8::try_decode_from(empty).is_err());
        assert!(u16::try_decode_from(empty).is_err());
        assert!(u32::try_decode_from(empty).is_err());
        assert!(u64::try_decode_from(empty).is_err());
        assert!(u128::try_decode_from(empty).is_err());
        assert!(usize::try_decode_from(empty).is_err());
        assert!(bool::try_decode_from(empty).is_err());
    }

    #[test]
    fn security_test_repeated_decoding_no_panic() {
        // Decode the same malicious data repeatedly to check for panics
        let malicious = vec![0xFF, 0xFF];

        for _ in 0..100 {
            let _ = u32::try_decode_from(&malicious);
            let _ = u64::try_decode_from(&malicious);
        }
    }

    #[test]
    fn security_test_alternating_bit_patterns() {
        // Test various bit patterns that might trigger edge cases
        let patterns = vec![
            vec![0xAA], // 10101010
            vec![0x55], // 01010101
            vec![0xAA, 0x55],
            vec![0x55, 0xAA],
        ];

        for pattern in patterns {
            // These should either decode successfully or return an error
            // but must not panic
            let _ = u8::try_decode_from(&pattern);
            let _ = u16::try_decode_from(&pattern);
        }
    }

    // ========================================================================
    // Security Tests - Fuzzing-Style Property Tests
    // ========================================================================

    proptest! {
        #[test]
        fn security_prop_decode_random_bytes(bytes in prop::collection::vec(any::<u8>(), 0..50)) {
            // Random bytes should either decode successfully or return an error
            // but must not panic
            let _ = u8::try_decode_from(&bytes);
            let _ = u16::try_decode_from(&bytes);
            let _ = u32::try_decode_from(&bytes);
            let _ = u64::try_decode_from(&bytes);
            let _ = u128::try_decode_from(&bytes);
        }

        #[test]
        fn security_prop_encoded_bytes_validation(bytes in prop::collection::vec(any::<u8>(), 0..100)) {
            // EncodedBytes validation should never panic, only return Ok or Err
            let result = EncodedBytes::try_from(bytes);

            // If it succeeds, the data should be valid
            if let Ok(encoded) = result {
                // Should be able to decode as u128 (covers all smaller types)
                let decode_result = u128::try_decode_from(encoded.as_ref());
                prop_assert!(decode_result.is_ok(), "Validated EncodedBytes should be decodable");
            }
        }

        #[test]
        fn security_prop_buffer_encoding_no_panic(values in prop::collection::vec(any::<u32>(), 0..1000)) {
            // Encoding many values into a buffer should not panic
            let mut buffer = Vec::new();
            for value in values {
                value.encode_into_buffer(&mut buffer);
            }

            // Buffer should have reasonable size
            prop_assert!(buffer.len() < 5000, "Buffer should not grow excessively");
        }

        #[test]
        fn security_prop_array_encoding_never_panics(value: u128) {
            // Array encoding should never panic for any value
            let (_array, len) = value.encode_into_array();

            // Length should be within bounds
            prop_assert!(len > 0);
            prop_assert!(len <= 19);

            // Encode again to get array for decoding
            let (array, len) = value.encode_into_array();
            let (decoded, _) = u128::try_decode_from(&array[..len]).unwrap();
            prop_assert_eq!(decoded, value);
        }

        #[test]
        fn security_prop_decode_never_returns_more_than_input(
            bytes in prop::collection::vec(any::<u8>(), 1..100)
        ) {
            // Decoded remainder should never be larger than input
            if let Ok((_, remaining)) = u64::try_decode_from(&bytes) {
                prop_assert!(remaining.len() <= bytes.len());
            }
        }

        #[test]
        fn security_prop_encode_size_bounded(value: u64) {
            // Encoded size should never exceed maximum varint size for the type
            let encoded = value.encode_into();
            prop_assert!(encoded.len() <= 10, "u64 varint should not exceed 10 bytes");

            let (_array, len) = value.encode_into_array();
            prop_assert!(len <= 10, "u64 array encoding should not exceed 10 bytes");
        }
    }

    // ========================================================================
    // Concurrency Tests - Compile-Time Send + Sync Verification
    // ========================================================================

    /// Verify that primitive types used with traits are Send + Sync
    #[test]
    fn assert_primitives_send_sync() {
        fn is_send<T: Send>() {}
        fn is_sync<T: Sync>() {}

        // All integer types should be Send + Sync
        is_send::<u8>();
        is_sync::<u8>();
        is_send::<u16>();
        is_sync::<u16>();
        is_send::<u32>();
        is_sync::<u32>();
        is_send::<u64>();
        is_sync::<u64>();
        is_send::<u128>();
        is_sync::<u128>();
        is_send::<usize>();
        is_sync::<usize>();
        is_send::<bool>();
        is_sync::<bool>();

        // Vec<u8> should be Send + Sync
        is_send::<Vec<u8>>();
        is_sync::<Vec<u8>>();
    }

    /// Verify that encoded data types are Send + Sync
    #[test]
    fn assert_encoded_types_send_sync() {
        fn is_send<T: Send>() {}
        fn is_sync<T: Sync>() {}

        // EncodedBytes should be Send + Sync
        is_send::<EncodedBytes>();
        is_sync::<EncodedBytes>();

        // Error should be Send + Sync
        is_send::<crate::Error>();
        is_sync::<crate::Error>();
    }

    // ========================================================================
    // Concurrency Tests - Multi-Threaded Encoding
    // ========================================================================

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_parallel_encode_into() {
        use std::sync::Arc;
        use std::sync::Mutex;
        use std::thread;

        // Encode values in parallel threads
        let results = Arc::new(Mutex::new(Vec::new()));
        let handles: Vec<_> = (0..10)
            .map(|i| {
                let results = Arc::clone(&results);
                thread::spawn(move || {
                    let value = i as u32 * 100;
                    let encoded = value.encode_into();
                    results.lock().unwrap().push((value, encoded));
                })
            })
            .collect();

        for handle in handles {
            handle.join().unwrap();
        }

        // Verify all encodings are correct
        let results = results.lock().unwrap();
        assert_eq!(results.len(), 10);
        for (original, encoded) in results.iter() {
            let (decoded, _) = u32::try_decode_from(encoded).unwrap();
            assert_eq!(*original, decoded);
        }
    }

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_parallel_encode_into_buffer() {
        use std::thread;

        // Each thread gets its own buffer
        let handles: Vec<_> = (0..10)
            .map(|i| {
                thread::spawn(move || {
                    let mut buffer = Vec::new();
                    for j in 0u16..100 {
                        (i * 100 + j).encode_into_buffer(&mut buffer);
                    }
                    buffer
                })
            })
            .collect();

        for handle in handles {
            let buffer = handle.join().unwrap();
            assert!(buffer.len() >= 100); // At least 1 byte per value
            assert!(buffer.len() < 300); // At most 3 bytes per u16
        }
    }

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_parallel_encode_into_array() {
        use std::thread;

        // Array encoding is purely stack-based, perfect for parallelism
        let handles: Vec<_> = (0..10)
            .map(|i| {
                thread::spawn(move || {
                    let value = i as u64 * 1000;
                    let (array, len) = value.encode_into_array();
                    (value, array, len)
                })
            })
            .collect();

        for handle in handles {
            let (original, array, len) = handle.join().unwrap();
            let (decoded, _) = u64::try_decode_from(&array[..len]).unwrap();
            assert_eq!(original, decoded);
        }
    }

    // ========================================================================
    // Concurrency Tests - Multi-Threaded Decoding
    // ========================================================================

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_shared_decode_data() {
        use std::sync::Arc;
        use std::thread;

        // Pre-encode some data
        let mut data = Vec::new();
        for i in 0u32..100 {
            data.extend_from_slice(&i.encode_into());
        }
        let shared_data = Arc::new(data);

        // Multiple threads decode from the same data
        let handles: Vec<_> = (0..4)
            .map(|_| {
                let data = Arc::clone(&shared_data);
                thread::spawn(move || {
                    let mut slice = &data[..];
                    let mut count = 0;
                    while !slice.is_empty() {
                        match u32::try_decode_from(slice) {
                            Ok((_, remaining)) => {
                                count += 1;
                                slice = remaining;
                            }
                            Err(_) => break,
                        }
                    }
                    count
                })
            })
            .collect();

        for handle in handles {
            let count = handle.join().unwrap();
            assert_eq!(count, 100, "All threads should decode 100 values");
        }
    }

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_parallel_decode_different_data() {
        use std::thread;

        // Each thread decodes different data
        let handles: Vec<_> = (0..10)
            .map(|i| {
                thread::spawn(move || {
                    // Create encoded data
                    let mut data = Vec::new();
                    for j in 0u16..50 {
                        (i * 50 + j).encode_into_buffer(&mut data);
                    }

                    // Decode it
                    let mut slice = &data[..];
                    let mut decoded_values = Vec::new();
                    while !slice.is_empty() {
                        match u16::try_decode_from(slice) {
                            Ok((value, remaining)) => {
                                decoded_values.push(value);
                                slice = remaining;
                            }
                            Err(_) => break,
                        }
                    }
                    decoded_values
                })
            })
            .collect();

        for (i, handle) in handles.into_iter().enumerate() {
            let values = handle.join().unwrap();
            assert_eq!(values.len(), 50);
            // Verify first and last values
            assert_eq!(values[0], i as u16 * 50);
            assert_eq!(values[49], i as u16 * 50 + 49);
        }
    }

    // ========================================================================
    // Concurrency Tests - Pipeline Processing
    // ========================================================================

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_pipeline_encode_decode() {
        use std::sync::mpsc;
        use std::thread;

        let (tx, rx) = mpsc::channel();

        // Encoder thread
        let encoder = thread::spawn(move || {
            for i in 0u32..1000 {
                tx.send(i.encode_into()).unwrap();
            }
        });

        // Decoder thread
        let decoder = thread::spawn(move || {
            let mut sum = 0u64;
            for encoded in rx {
                let (value, _) = u32::try_decode_from(&encoded).unwrap();
                sum += u64::from(value);
            }
            sum
        });

        encoder.join().unwrap();
        let sum = decoder.join().unwrap();

        // Sum of 0..1000 = 999 * 1000 / 2 = 499500
        assert_eq!(sum, 499_500);
    }

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_multi_producer_single_consumer() {
        use std::sync::mpsc;
        use std::thread;

        let (tx, rx) = mpsc::channel();

        // Multiple producer threads
        let producers: Vec<_> = (0..4)
            .map(|thread_id| {
                let tx = tx.clone();
                thread::spawn(move || {
                    for i in 0u16..100 {
                        let value = thread_id * 100 + i;
                        tx.send(value.encode_into()).unwrap();
                    }
                })
            })
            .collect();

        // Drop original sender
        drop(tx);

        // Single consumer thread
        let consumer = thread::spawn(move || {
            let mut count = 0;
            for encoded in rx {
                let (value, _) = u16::try_decode_from(&encoded).unwrap();
                assert!(value < 400);
                count += 1;
            }
            count
        });

        for producer in producers {
            producer.join().unwrap();
        }

        let total = consumer.join().unwrap();
        assert_eq!(total, 400); // 4 threads * 100 values
    }

    // ========================================================================
    // Concurrency Tests - Stress Testing
    // ========================================================================

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_stress_parallel_encoding() {
        use std::thread;

        // Stress test with many threads
        let handles: Vec<_> = (0..100)
            .map(|i| {
                thread::spawn(move || {
                    let mut buffer = Vec::new();
                    for j in 0u8..255 {
                        ((i * 255 + u32::from(j)) % u32::from(u16::MAX))
                            .encode_into_buffer(&mut buffer);
                    }
                    buffer.len()
                })
            })
            .collect();

        let mut total_bytes = 0;
        for handle in handles {
            total_bytes += handle.join().unwrap();
        }

        // Should have encoded 100 * 255 = 25500 values
        assert!(total_bytes >= 25500); // At least 1 byte per value
        assert!(total_bytes < 76500); // At most 3 bytes per value
    }

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_stress_shared_read() {
        use std::sync::Arc;
        use std::thread;

        // Pre-encode a large dataset
        let mut data = Vec::new();
        for i in 0u32..10000 {
            i.encode_into_buffer(&mut data);
        }
        let shared_data = Arc::new(data);

        // Many threads read the same data
        let handles: Vec<_> = (0..50)
            .map(|_| {
                let data = Arc::clone(&shared_data);
                thread::spawn(move || {
                    let mut slice = &data[..];
                    let mut count = 0;
                    while !slice.is_empty() {
                        if let Ok((_, remaining)) = u32::try_decode_from(slice) {
                            count += 1;
                            slice = remaining;
                        } else {
                            break;
                        }
                    }
                    count
                })
            })
            .collect();

        for handle in handles {
            let count = handle.join().unwrap();
            assert_eq!(count, 10000);
        }
    }

    // ========================================================================
    // Concurrency Tests - Work Stealing Pattern
    // ========================================================================

    #[cfg(feature = "std")]
    #[test]
    fn concurrency_test_work_stealing() {
        use std::sync::Arc;
        use std::sync::Mutex;
        use std::thread;

        // Shared work queue
        let work_queue = Arc::new(Mutex::new((0u32..1000).collect::<Vec<_>>()));
        let results = Arc::new(Mutex::new(Vec::new()));

        // Worker threads steal work from queue
        let workers: Vec<_> = (0..4)
            .map(|_| {
                let queue = Arc::clone(&work_queue);
                let results = Arc::clone(&results);
                thread::spawn(move || {
                    loop {
                        let work_item = {
                            let mut queue = queue.lock().unwrap();
                            queue.pop()
                        };

                        match work_item {
                            Some(value) => {
                                // Encode and decode
                                let encoded = value.encode_into();
                                let (decoded, _) = u32::try_decode_from(&encoded).unwrap();
                                results.lock().unwrap().push(decoded);
                            }
                            None => break,
                        }
                    }
                })
            })
            .collect();

        for worker in workers {
            worker.join().unwrap();
        }

        let results = results.lock().unwrap();
        assert_eq!(results.len(), 1000);
    }
}