zipora 3.1.2

High-performance Rust implementation providing advanced data structures and compression algorithms with memory safety guarantees. Features LRU page cache, sophisticated caching layer, fiber-based concurrency, real-time compression, secure memory pools, SIMD optimizations, and complete C FFI for migration from C++.
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
//! ValVec32: 32-bit indexed vector for memory efficiency
//!
//! This container uses u32 indices instead of usize, providing significant
//! memory savings on 64-bit systems for large collections while maintaining
//! high performance for common operations.
//!
//! Optimized for high performance and memory efficiency.

use crate::error::{Result, ZiporaError};
use crate::memory::SecureMemoryPool;
// Note: Using libc allocator throughout for consistency
use std::fmt;
use std::mem;
use std::ops::{Index, IndexMut};
use std::ptr::{self, NonNull};
use std::slice;
use std::sync::Arc;

// Import libc for direct malloc/realloc/free access
extern crate libc;

/// Maximum capacity for ValVec32 (2^32 - 1 elements)
pub const MAX_CAPACITY: u32 = u32::MAX;

/// Cache line size for x86_64 processors
#[cfg(target_arch = "x86_64")]
pub const CACHE_LINE_SIZE: usize = 64;

/// Cache line size for ARM64 processors
#[cfg(target_arch = "aarch64")]
pub const CACHE_LINE_SIZE: usize = 128;

/// Default cache line size for other architectures
#[cfg(not(any(target_arch = "x86_64", target_arch = "aarch64")))]
pub const CACHE_LINE_SIZE: usize = 64;

/// Platform-specific malloc_usable_size wrapper
#[cfg(target_os = "linux")]
fn get_usable_size(ptr: *mut u8, size: usize) -> usize {
    // SAFETY: malloc_usable_size is a valid libc function, ptr is from malloc or is null
    unsafe {
        // Use malloc_usable_size on Linux
        unsafe extern "C" {
            fn malloc_usable_size(ptr: *mut std::ffi::c_void) -> usize;
        }
        if !ptr.is_null() {
            malloc_usable_size(ptr as *mut std::ffi::c_void)
        } else {
            size
        }
    }
}

#[cfg(any(target_os = "macos", target_os = "ios"))]
fn get_usable_size(ptr: *mut u8, size: usize) -> usize {
    // SAFETY: malloc_size is a valid libc function, ptr is from malloc or is null
    unsafe {
        // Use malloc_size on macOS/iOS
        unsafe extern "C" {
            fn malloc_size(ptr: *mut std::ffi::c_void) -> usize;
        }
        if !ptr.is_null() {
            malloc_size(ptr as *mut std::ffi::c_void)
        } else {
            size
        }
    }
}

#[cfg(target_os = "windows")]
fn get_usable_size(ptr: *mut u8, size: usize) -> usize {
    // SAFETY: _msize is a valid libc function, ptr is from malloc or is null
    unsafe {
        // Use _msize on Windows
        unsafe extern "C" {
            fn _msize(ptr: *mut std::ffi::c_void) -> usize;
        }
        if !ptr.is_null() {
            _msize(ptr as *mut std::ffi::c_void)
        } else {
            size
        }
    }
}

#[cfg(not(any(target_os = "linux", target_os = "macos", target_os = "ios", target_os = "windows")))]
fn get_usable_size(_ptr: *mut u8, size: usize) -> usize {
    // Fallback for other platforms
    size
}

// Branch prediction hint macro for performance optimization
// Uses __builtin_expect semantics via core::intrinsics on nightly,
// or falls back to a no-op on stable (letting LLVM optimize based on code structure)
#[cfg(feature = "nightly")]
macro_rules! likely {
    ($e:expr) => {
        std::intrinsics::likely($e)
    };
}

#[cfg(not(feature = "nightly"))]
macro_rules! likely {
    ($e:expr) => {
        $e
    };
}

/// Simple optimal growth strategy following referenced project pattern
/// Uses golden ratio (~1.618) for mathematically optimal amortized performance
#[inline]
fn larger_capacity(old_cap: u32) -> u32 {
    if old_cap == 0 {
        // Start with reasonable initial capacity - cache line optimized
        return 8; // Simple, fast initial size
    }

    // referenced project pattern: oldcap * 103 / 64 ≈ 1.609375 (close to golden ratio 1.618)
    // This is mathematically optimal for amortized performance
    let new_cap = (old_cap as u64 * 103 / 64) as u32;
    new_cap.min(MAX_CAPACITY)
}

/// High-performance vector with 32-bit indices for memory efficiency
///
/// ValVec32 provides significant memory savings on 64-bit systems by using
/// u32 indices instead of usize. This results in 33% memory reduction for
/// the struct overhead while supporting up to 4 billion elements.
///
/// # Memory Efficiency
///
/// - Uses u32 for length and capacity (8 bytes vs 16 bytes on 64-bit)
/// - Maximum capacity: 4,294,967,295 elements
/// - Memory overhead: 16 bytes vs 24 bytes for std::Vec
/// - Target: 33% memory reduction for struct size
///
/// # Performance Optimizations
///
/// - O(1) amortized push/pop operations
/// - O(1) random access via indexing
/// - Adaptive growth strategy with size-based growth factors
/// - malloc_usable_size optimization for maximum memory utilization
/// - Hot path optimization with branch prediction hints
/// - Streamlined design for optimal cache performance
///
/// # Examples
///
/// ```rust
/// use zipora::ValVec32;
///
/// let mut vec = ValVec32::new();
/// vec.push(42)?;
/// vec.push(84)?;
///
/// assert_eq!(vec.len(), 2);
/// assert_eq!(vec[0usize], 42);
/// assert_eq!(vec[1usize], 84);
/// # Ok::<(), zipora::ZiporaError>(())
/// ```
#[repr(C)] // Ensure predictable layout
pub struct ValVec32<T> {
    /// Pointer to the allocated memory
    ptr: NonNull<T>,
    /// Number of elements currently stored (u32 for memory efficiency)
    len: u32,
    /// Allocated capacity in elements (u32 for memory efficiency)  
    capacity: u32,
    // Total: ptr(8) + len(4) + capacity(4) = 16 bytes
    // Streamlined design for optimal performance and cache efficiency
}

// Simple iterator using slice - prioritize correctness over micro-optimizations
pub type ValVec32Iter<'a, T> = std::slice::Iter<'a, T>;
pub type ValVec32IterMut<'a, T> = std::slice::IterMut<'a, T>;

impl<T> ValVec32<T> {
    /// Creates a new empty ValVec32
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let vec: ValVec32<i32> = ValVec32::new();
    /// assert_eq!(vec.len(), 0);
    /// assert_eq!(vec.capacity(), 0);
    /// ```
    pub fn new() -> Self {
        Self {
            ptr: NonNull::dangling(),
            len: 0,
            capacity: 0,
        }
    }

    /// Creates a new ValVec32 with specified capacity
    ///
    /// # Arguments
    ///
    /// * `capacity` - Initial capacity to allocate
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::MemoryError` if allocation fails
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let vec: ValVec32<i32> = ValVec32::with_capacity(100)?;
    /// assert_eq!(vec.len(), 0);
    /// assert!(vec.capacity() >= 100); // Capacity may be larger due to allocator optimization
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn with_capacity(capacity: u32) -> Result<Self> {
        if capacity == 0 || mem::size_of::<T>() == 0 {
            return Ok(Self::new());
        }

        let capacity_usize = capacity as usize;
        let size = capacity_usize * mem::size_of::<T>();

        // Use libc allocation for consistency with grow_to() and drop()
        // SAFETY: malloc returns valid pointer or null, checked before NonNull::new_unchecked
        let ptr = unsafe {
            let raw_ptr = libc::malloc(size);
            if raw_ptr.is_null() {
                return Err(ZiporaError::out_of_memory(size));
            }
            NonNull::new_unchecked(raw_ptr as *mut T)
        };
        
        // Use malloc_usable_size to get actual allocated capacity
        let actual_size = get_usable_size(ptr.as_ptr() as *mut u8, size);
        let actual_capacity = (actual_size / mem::size_of::<T>()).min(MAX_CAPACITY as usize);
        
        Ok(Self {
            ptr,
            len: 0,
            capacity: actual_capacity as u32,
        })
    }

    /// Creates a new ValVec32 with secure pool compatibility
    ///
    /// # Arguments
    ///
    /// * `capacity` - Initial capacity to allocate
    /// * `_pool` - SecureMemoryPool (currently unused for performance)
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::MemoryError` if allocation fails
    pub fn with_secure_pool(capacity: u32, _pool: Arc<SecureMemoryPool>) -> Result<Self> {
        // For now, ignore the pool parameter and use standard allocation
        // This maintains API compatibility while maximizing performance
        Self::with_capacity(capacity)
    }

    /// Returns the number of elements in the vector (u32)
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// assert_eq!(vec.len(), 0);
    ///
    /// vec.push(42)?;
    /// assert_eq!(vec.len(), 1);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn len(&self) -> u32 {
        self.len
    }
    
    /// Returns the number of elements in the vector (usize)
    #[inline]
    pub fn len_usize(&self) -> usize {
        self.len as usize
    }

    /// Returns the allocated capacity of the vector (u32)
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let vec: ValVec32<i32> = ValVec32::with_capacity(10)?;
    /// assert_eq!(vec.capacity(), 10);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn capacity(&self) -> u32 {
        self.capacity
    }
    
    /// Returns the allocated capacity of the vector (usize)
    #[inline]
    pub fn capacity_usize(&self) -> usize {
        self.capacity as usize
    }

    /// Returns true if the vector is empty
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let vec: ValVec32<i32> = ValVec32::new();
    /// assert!(vec.is_empty());
    /// ```
    #[inline]
    pub fn is_empty(&self) -> bool {
        self.len == 0
    }

    /// Reserves capacity for at least `additional` more elements
    ///
    /// # Arguments
    ///
    /// * `additional` - Number of additional elements to reserve space for
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::InvalidData` if new capacity would overflow
    /// Returns `ZiporaError::MemoryError` if allocation fails
    #[inline]
    pub fn reserve(&mut self, additional: u32) -> Result<()> {
        let required = self
            .len
            .checked_add(additional)
            .ok_or_else(|| ZiporaError::invalid_data("Capacity overflow"))?;

        if required <= self.capacity {
            return Ok(());
        }

        let new_capacity = self.calculate_new_capacity(required);
        self.grow_to(new_capacity)
    }

    /// Calculates new capacity using referenced project optimal growth strategy
    #[inline]
    fn calculate_new_capacity(&self, min_capacity: u32) -> u32 {
        let new_cap = larger_capacity(self.capacity).max(min_capacity);
        new_cap.min(MAX_CAPACITY)
    }

    /// Grows the vector to the specified capacity - simplified following referenced project pattern
    /// Simple realloc-based approach for maximum performance
    #[cold]
    #[inline(never)]
    fn grow_to(&mut self, new_capacity: u32) -> Result<()> {
        if new_capacity <= self.capacity {
            return Ok(());
        }

        if mem::size_of::<T>() == 0 {
            // ZSTs don't need allocation
            self.capacity = MAX_CAPACITY;
            return Ok(());
        }

        let new_capacity_usize = new_capacity as usize;
        let elem_size = mem::size_of::<T>();
        let new_size = new_capacity_usize.saturating_mul(elem_size);

        // Referenced project exact realloc pattern: T* q = (T*)pa_realloc(p, sizeof(T) * new_cap);
        let new_ptr = if self.capacity == 0 {
            // Initial allocation - use malloc directly like referenced project
            // SAFETY: malloc returns valid pointer or null, checked before NonNull::new_unchecked
            unsafe {
                let raw_ptr = libc::malloc(new_size);
                if raw_ptr.is_null() {
                    return Err(ZiporaError::out_of_memory(new_size));
                }
                NonNull::new_unchecked(raw_ptr as *mut T)
            }
        } else {
            // Reallocation - use realloc directly like referenced project pa_realloc
            // SAFETY: self.ptr is valid from previous malloc/realloc, realloc returns valid pointer or null
            unsafe {
                let old_ptr = self.ptr.as_ptr() as *mut libc::c_void;
                let raw_ptr = libc::realloc(old_ptr, new_size);
                if raw_ptr.is_null() {
                    return Err(ZiporaError::out_of_memory(new_size));
                }
                NonNull::new_unchecked(raw_ptr as *mut T)
            }
        };

        self.ptr = new_ptr;
        self.capacity = new_capacity;

        Ok(())
    }

    /// Appends an element to the back of the vector
    ///
    /// # Arguments
    ///
    /// * `value` - Element to append
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::InvalidData` if vector is at maximum capacity
    /// Returns `ZiporaError::MemoryError` if allocation fails during growth
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(42)?;
    /// vec.push(84)?;
    ///
    /// assert_eq!(vec.len(), 2);
    /// assert_eq!(vec[0usize], 42);
    /// assert_eq!(vec[1usize], 84);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    /// Appends an element to the back of the vector - hot path optimized
    /// Optimized for maximum performance
    #[inline(always)]
    pub fn push(&mut self, value: T) -> Result<()> {
        // Load n into local, check against c
        let oldsize = self.len;
        if likely!(oldsize < self.capacity) {
            // Fast path: placement new pattern - new(p+oldsize)T(x)
            let lp = self.ptr.as_ptr(); // Load pointer into register
            // SAFETY: oldsize < capacity guarantees offset is within allocated buffer
            unsafe {
                ptr::write(lp.add(oldsize as usize), value);
            }
            self.len = oldsize + 1;
            Ok(())
        } else {
            // Cold path: never inlined slow path
            self.push_slow(value)
        }
    }


    /// Appends an element to the vector, panicking on failure (like std::Vec)
    ///
    /// This method matches the behavior of std::Vec::push, panicking if
    /// allocation fails or the vector is at maximum capacity. This provides
    /// optimal performance for benchmarking against std::Vec.
    ///
    /// Ultra-optimized for maximum performance.
    ///
    /// # Arguments
    ///
    /// * `value` - Element to append
    ///
    /// # Panics
    ///
    /// Panics if the vector is at maximum capacity or allocation fails
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push_panic(42);
    /// vec.push_panic(84);
    ///
    /// assert_eq!(vec.len(), 2);
    /// assert_eq!(vec[0usize], 42);
    /// assert_eq!(vec[1usize], 84);
    /// ```
    #[inline(always)]
    pub fn push_panic(&mut self, value: T) {
        // Load n into local, check against c
        let oldsize = self.len;
        if likely!(oldsize < self.capacity) {
            // Fast path: placement new pattern - new(p+oldsize)T(x)
            let lp = self.ptr.as_ptr(); // Load pointer into register
            // SAFETY: oldsize < capacity guarantees offset is within allocated buffer
            unsafe {
                ptr::write(lp.add(oldsize as usize), value);
            }
            self.len = oldsize + 1;
        } else {
            // Cold path: never inlined slow path
            self.push_slow_panic(value);
        }
    }

    /// Slow path for push_panic when growth is needed
    #[cold]
    #[inline(never)]
    fn push_slow_panic(&mut self, value: T) {
        if self.len == MAX_CAPACITY {
            panic!("ValVec32 at maximum capacity");
        }

        let new_capacity = self.calculate_new_capacity(self.len + 1);
        // Try to grow, fallback to smaller capacity if needed
        if self.grow_to(new_capacity).is_err() {
            // Try half capacity as fallback
            let fallback_capacity = new_capacity / 2;
            if fallback_capacity > self.len {
                if let Err(e) = self.grow_to(fallback_capacity) {
                    panic!("Failed to allocate memory: {}", e);
                }
            } else {
                panic!("Insufficient memory for growth");
            }
        }

        // SAFETY: grow_to ensures capacity > len, so len is within allocated buffer
        unsafe {
            let ptr = self.ptr.as_ptr().add(self.len as usize);
            ptr::write(ptr, value);
            self.len += 1;
        }
    }

    /// Unchecked push for when capacity is guaranteed - maximum performance
    /// 
    /// # Safety
    /// 
    /// Caller must ensure that `self.len < self.capacity`
    /// 
    /// # Examples
    /// 
    /// ```rust
    /// use zipora::ValVec32;
    /// 
    /// let mut vec = ValVec32::with_capacity(10)?;
    /// unsafe {
    ///     vec.unchecked_push(42); // Safe because we reserved capacity
    /// }
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline(always)]
    pub unsafe fn unchecked_push(&mut self, value: T) {
        debug_assert!(self.len < self.capacity);
        // SAFETY: caller guarantees len < capacity, so offset is within allocated buffer
        unsafe {
            ptr::write(self.ptr.as_ptr().offset(self.len as isize), value);
        }
        self.len += 1;
    }

    /// Unchecked push for Copy types - even more optimized
    /// 
    /// # Safety
    /// 
    /// Caller must ensure that `self.len < self.capacity`
    #[inline(always)]
    pub unsafe fn unchecked_push_copy(&mut self, value: T)
    where
        T: Copy
    {
        debug_assert!(self.len < self.capacity);
        // SAFETY: caller guarantees len < capacity, so offset is within allocated buffer
        unsafe {
            *self.ptr.as_ptr().offset(self.len as isize) = value;
        }
        self.len += 1;
    }


    /// Slow path for push when growth is needed
    #[cold]
    #[inline(never)]
    fn push_slow(&mut self, value: T) -> Result<()> {
        if self.len == MAX_CAPACITY {
            return Err(ZiporaError::invalid_data("Vector at maximum capacity"));
        }

        let new_capacity = self.calculate_new_capacity(self.len + 1);
        self.grow_to(new_capacity)?;

        // SAFETY: grow_to ensures capacity > len, so len is within allocated buffer
        unsafe {
            let ptr = self.ptr.as_ptr().add(self.len as usize);
            ptr::write(ptr, value);
            self.len += 1;
        }
        Ok(())
    }

    /// Removes and returns the last element
    ///
    /// # Returns
    ///
    /// `Some(T)` if the vector is not empty, `None` otherwise
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// assert_eq!(vec.pop(), None);
    ///
    /// vec.push(42)?;
    /// vec.push(84)?;
    ///
    /// assert_eq!(vec.pop(), Some(84));
    /// assert_eq!(vec.pop(), Some(42));
    /// assert_eq!(vec.pop(), None);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn pop(&mut self) -> Option<T> {
        if self.len == 0 {
            return None;
        }

        self.len -= 1;
        // SAFETY: We've decremented len, so this index is now out of bounds
        // but was previously valid
        Some(unsafe { ptr::read(self.ptr.as_ptr().add(self.len as usize)) })
    }

    /// Returns a reference to the element at the given index
    ///
    /// # Arguments
    ///
    /// * `index` - Index of the element to retrieve
    ///
    /// # Returns
    ///
    /// `Some(&T)` if index is valid, `None` otherwise
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(42)?;
    ///
    /// assert_eq!(vec.get(0), Some(&42));
    /// assert_eq!(vec.get(1), None);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn get(&self, index: u32) -> Option<&T> {
        if index < self.len {
            let index_usize = index as usize;
            // SAFETY: index < len guarantees offset is within valid initialized range
            Some(unsafe { &*self.ptr.as_ptr().add(index_usize) })
        } else {
            None
        }
    }

    /// Get element without bounds checking.
    ///
    /// # Safety
    ///
    /// Caller must ensure `index < self.len()`.
    #[inline]
    pub unsafe fn get_unchecked(&self, index: u32) -> &T {
        debug_assert!(index < self.len);
        // SAFETY: Caller ensures index < len, ptr is valid for len elements, pointer arithmetic is within bounds
        unsafe { &*self.ptr.as_ptr().add(index as usize) }
    }

    /// Get mutable element without bounds checking.
    ///
    /// # Safety
    ///
    /// Caller must ensure `index < self.len()`.
    #[inline]
    pub unsafe fn get_unchecked_mut(&mut self, index: u32) -> &mut T {
        debug_assert!(index < self.len);
        // SAFETY: Caller ensures index < len, ptr is valid for len elements, pointer arithmetic is within bounds, &mut self ensures exclusive access
        unsafe { &mut *self.ptr.as_ptr().add(index as usize) }
    }

    /// Returns a mutable reference to the element at the given index
    ///
    /// # Arguments
    ///
    /// * `index` - Index of the element to retrieve
    ///
    /// # Returns
    ///
    /// `Some(&mut T)` if index is valid, `None` otherwise
    #[inline]
    pub fn get_mut(&mut self, index: u32) -> Option<&mut T> {
        if index < self.len {
            let index_usize = index as usize;
            // SAFETY: index < len guarantees offset is within valid initialized range
            Some(unsafe { &mut *self.ptr.as_ptr().add(index_usize) })
        } else {
            None
        }
    }

    /// Sets the value at the given index
    ///
    /// # Arguments
    ///
    /// * `index` - Index to set
    /// * `value` - Value to set
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::InvalidData` if index is out of bounds
    pub fn set(&mut self, index: u32, value: T) -> Result<()> {
        if index >= self.len {
            return Err(ZiporaError::invalid_data(format!(
                "Index {} out of bounds for length {}",
                index, self.len
            )));
        }

        // SAFETY: Index is bounds checked
        unsafe {
            ptr::write(self.ptr.as_ptr().add(index as usize), value);
        }
        Ok(())
    }

    /// Clears the vector, removing all elements
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(42)?;
    /// vec.push(84)?;
    ///
    /// vec.clear();
    /// assert!(vec.is_empty());
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn clear(&mut self) {
        // Drop all elements
        for i in 0..(self.len as usize) {
            // SAFETY: i < len guarantees offset is within valid initialized range
            unsafe {
                ptr::drop_in_place(self.ptr.as_ptr().add(i));
            }
        }
        self.len = 0;
    }

    /// Returns a slice containing all elements
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(1)?;
    /// vec.push(2)?;
    /// vec.push(3)?;
    ///
    /// let slice = vec.as_slice();
    /// assert_eq!(slice, &[1, 2, 3]);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn as_slice(&self) -> &[T] {
        if self.len == 0 || mem::size_of::<T>() == 0 {
            return &[];
        }
        // SAFETY: We have len valid elements starting from ptr
        unsafe { slice::from_raw_parts(self.ptr.as_ptr(), self.len as usize) }
    }

    /// Returns a mutable slice containing all elements
    #[inline]
    pub fn as_mut_slice(&mut self) -> &mut [T] {
        if self.len == 0 || mem::size_of::<T>() == 0 {
            return &mut [];
        }
        // SAFETY: We have len valid elements starting from ptr
        unsafe { slice::from_raw_parts_mut(self.ptr.as_ptr(), self.len as usize) }
    }

    /// Extends the vector by appending all elements from a slice
    ///
    /// # Arguments
    ///
    /// * `slice` - Slice of elements to append
    ///
    /// # Errors
    ///
    /// Returns `ZiporaError::InvalidData` if resulting length would overflow
    /// Returns `ZiporaError::MemoryError` if allocation fails
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(1)?;
    /// vec.extend_from_slice(&[2, 3, 4])?;
    ///
    /// assert_eq!(vec.len(), 4);
    /// assert_eq!(vec.get(0), Some(&1));
    /// assert_eq!(vec.get(3), Some(&4));
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn extend_from_slice(&mut self, slice: &[T]) -> Result<()>
    where
        T: Clone,
    {
        if slice.is_empty() {
            return Ok(());
        }

        let additional = slice.len() as u32;
        let new_len = self
            .len
            .checked_add(additional)
            .ok_or_else(|| ZiporaError::invalid_data("Length overflow"))?;

        self.reserve(additional)?;

        // SAFETY: reserve ensures capacity >= new_len, dst+i is within allocated buffer for all i < slice.len()
        unsafe {
            let dst = self.ptr.as_ptr().add(self.len as usize);
            for (i, item) in slice.iter().enumerate() {
                ptr::write(dst.add(i), item.clone());
            }
        }

        self.len = new_len;
        Ok(())
    }

    /// SIMD-optimized extend for Copy types - uses memcpy for maximum performance
    ///
    /// # Arguments
    ///
    /// * `slice` - Slice of elements to append
    ///
    /// # Errors
    ///
    /// Returns error if capacity overflow or allocation fails
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.extend_from_slice_copy(&[1, 2, 3, 4])?;
    /// assert_eq!(vec.len(), 4);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn extend_from_slice_copy(&mut self, slice: &[T]) -> Result<()>
    where
        T: Copy,
    {
        if slice.is_empty() {
            return Ok(());
        }

        let additional = slice.len() as u32;
        let new_len = self
            .len
            .checked_add(additional)
            .ok_or_else(|| ZiporaError::invalid_data("Length overflow"))?;

        self.reserve(additional)?;

        // SAFETY: reserve ensures capacity >= new_len, buffers non-overlapping, dst valid for slice.len() elements
        unsafe {
            // Use memcpy for Copy types - significantly faster than iteration
            let dst = self.ptr.as_ptr().add(self.len as usize);
            ptr::copy_nonoverlapping(slice.as_ptr(), dst, slice.len());
        }

        self.len = new_len;
        Ok(())
    }

    /// Bulk push with SIMD optimization for Copy types
    ///
    /// # Arguments
    ///
    /// * `count` - Number of elements to push
    /// * `value` - Value to replicate
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push_n_copy(100, 42u32)?;
    /// assert_eq!(vec.len(), 100);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    #[inline]
    pub fn push_n_copy(&mut self, count: u32, value: T) -> Result<()>
    where
        T: Copy,
    {
        if count == 0 {
            return Ok(());
        }

        let new_len = self
            .len
            .checked_add(count)
            .ok_or_else(|| ZiporaError::invalid_data("Length overflow"))?;

        self.reserve(count)?;

        // SAFETY: reserve ensures capacity >= new_len, all offsets within allocated buffer
        unsafe {
            let dst = self.ptr.as_ptr().add(self.len as usize);

            // For small counts, use simple loop
            if count <= 16 {
                for i in 0..count as usize {
                    ptr::write(dst.add(i), value);
                }
            } else {
                // For larger counts, use doubling strategy for better performance
                ptr::write(dst, value);
                let mut written = 1usize;
                while written < count as usize {
                    let to_copy = written.min(count as usize - written);
                    ptr::copy_nonoverlapping(dst, dst.add(written), to_copy);
                    written += to_copy;
                }
            }
        }

        self.len = new_len;
        Ok(())
    }


    /// Returns an iterator over the elements
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(1)?;
    /// vec.push(2)?;
    /// vec.push(3)?;
    ///
    /// let mut iter = vec.iter();
    /// assert_eq!(iter.next(), Some(&1));
    /// assert_eq!(iter.next(), Some(&2));
    /// assert_eq!(iter.next(), Some(&3));
    /// assert_eq!(iter.next(), None);
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn iter(&self) -> ValVec32Iter<'_, T> {
        self.as_slice().iter()
    }

    /// Returns a mutable iterator over the elements
    ///
    /// # Examples
    ///
    /// ```rust
    /// use zipora::ValVec32;
    ///
    /// let mut vec = ValVec32::new();
    /// vec.push(1)?;
    /// vec.push(2)?;
    ///
    /// for item in vec.iter_mut() {
    ///     *item *= 2;
    /// }
    ///
    /// assert_eq!(vec.get(0), Some(&2));
    /// assert_eq!(vec.get(1), Some(&4));
    /// # Ok::<(), zipora::ZiporaError>(())
    /// ```
    pub fn iter_mut(&mut self) -> ValVec32IterMut<'_, T> {
        self.as_mut_slice().iter_mut()
    }
}

impl<T> Default for ValVec32<T> {
    fn default() -> Self {
        Self::new()
    }
}

impl<'a, T> IntoIterator for &'a ValVec32<T> {
    type Item = &'a T;
    type IntoIter = ValVec32Iter<'a, T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.iter()
    }
}

impl<'a, T> IntoIterator for &'a mut ValVec32<T> {
    type Item = &'a mut T;
    type IntoIter = ValVec32IterMut<'a, T>;
    
    fn into_iter(self) -> Self::IntoIter {
        self.iter_mut()
    }
}

impl<T> Drop for ValVec32<T> {
    fn drop(&mut self) {
        self.clear();

        if self.capacity > 0 && mem::size_of::<T>() > 0 {
            // Use libc::free to match referenced project pattern
            // SAFETY: self.ptr is valid from malloc/realloc or dangling (if capacity==0)
            unsafe {
                libc::free(self.ptr.as_ptr() as *mut libc::c_void);
            }
        }
    }
}

// Primary indexing: takes usize for convenient indexing.
// The u32 storage is an internal detail; callers index with native register width.
impl<T> Index<usize> for ValVec32<T> {
    type Output = T;

    /// Direct pointer deref for efficient element access.
    /// assert in debug, unchecked in release.
    #[inline(always)]
    fn index(&self, index: usize) -> &Self::Output {
        assert!(index < self.len as usize);
        // SAFETY: bounds checked by assert above
        unsafe { &*self.ptr.as_ptr().add(index) }
    }
}

impl<T> IndexMut<usize> for ValVec32<T> {
    #[inline(always)]
    fn index_mut(&mut self, index: usize) -> &mut Self::Output {
        assert!(index < self.len as usize);
        // SAFETY: bounds checked by assert above
        unsafe { &mut *self.ptr.as_ptr().add(index) }
    }
}

// Convenience: also accept u32 indices
impl<T> Index<u32> for ValVec32<T> {
    type Output = T;

    #[inline(always)]
    fn index(&self, index: u32) -> &Self::Output {
        &self[index as usize]
    }
}

impl<T> IndexMut<u32> for ValVec32<T> {
    #[inline(always)]
    fn index_mut(&mut self, index: u32) -> &mut Self::Output {
        &mut self[index as usize]
    }
}

impl<T: fmt::Debug> fmt::Debug for ValVec32<T> {
    fn fmt(&self, f: &mut fmt::Formatter<'_>) -> fmt::Result {
        f.debug_list().entries(self.as_slice()).finish()
    }
}

impl<T: Clone> Clone for ValVec32<T> {
    fn clone(&self) -> Self {
        // Graceful fallback: try full capacity, then half, then min capacity
        let mut new_vec = Self::with_capacity(self.len)
            .or_else(|_| Self::with_capacity(self.len / 2))
            .or_else(|_| Self::with_capacity(1.max(self.len / 4)))
            .unwrap_or_else(|_| Self::new());

        // Use bulk copy for better performance
        if self.len > 0 && new_vec.capacity >= self.len {
            // SAFETY: i < self.len, offsets within valid ranges for both vectors
            unsafe {
                for i in 0..(self.len as usize) {
                    let value = (*self.ptr.as_ptr().add(i)).clone();
                    ptr::write(new_vec.ptr.as_ptr().add(i), value);
                }
                new_vec.len = self.len;
            }
        } else if self.len > 0 {
            // Partial clone if we couldn't get full capacity
            let max_items = new_vec.capacity.min(self.len);
            // SAFETY: i < max_items <= both capacity and len, offsets within valid ranges
            unsafe {
                for i in 0..(max_items as usize) {
                    let value = (*self.ptr.as_ptr().add(i)).clone();
                    ptr::write(new_vec.ptr.as_ptr().add(i), value);
                }
                new_vec.len = max_items;
            }
        }

        new_vec
    }
}

impl<T: PartialEq> PartialEq for ValVec32<T> {
    fn eq(&self, other: &Self) -> bool {
        self.as_slice() == other.as_slice()
    }
}

impl<T: Eq> Eq for ValVec32<T> {}

// SAFETY: ValVec32 is Send if T is Send
unsafe impl<T: Send> Send for ValVec32<T> {}

// SAFETY: ValVec32 is Sync if T is Sync
unsafe impl<T: Sync> Sync for ValVec32<T> {}

#[cfg(test)]
mod tests {
    use super::*;

    #[test]
    fn test_new() {
        let vec: ValVec32<i32> = ValVec32::new();
        assert_eq!(vec.len(), 0);
        assert_eq!(vec.capacity(), 0);
        assert!(vec.is_empty());
    }

    #[test]
    fn test_with_capacity() -> Result<()> {
        let vec: ValVec32<i32> = ValVec32::with_capacity(10)?;
        assert_eq!(vec.len(), 0);
        // With malloc_usable_size optimization, capacity may be larger than requested
        assert!(vec.capacity() >= 10);
        assert!(vec.is_empty());
        Ok(())
    }

    #[test]
    fn test_with_capacity_zero() -> Result<()> {
        let vec: ValVec32<i32> = ValVec32::with_capacity(0)?;
        assert_eq!(vec.len(), 0);
        assert_eq!(vec.capacity(), 0);
        Ok(())
    }

    #[test]
    fn test_with_capacity_max() {
        // Test that MAX_CAPACITY is actually supported
        let result: Result<ValVec32<i32>> = ValVec32::with_capacity(MAX_CAPACITY);
        // This should succeed in theory, but might fail due to memory limitations
        // So we just check it doesn't panic
        let _ = result;
    }

    #[test]
    fn test_push_and_get() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();

        vec.push(42)?;
        vec.push(84)?;
        vec.push(126)?;

        assert_eq!(vec.len(), 3);
        assert_eq!(vec.get(0), Some(&42));
        assert_eq!(vec.get(1), Some(&84));
        assert_eq!(vec.get(2), Some(&126));
        assert_eq!(vec.get(3), None);

        Ok(())
    }

    #[test]
    fn test_indexing() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.push(10)?;
        vec.push(20)?;

        assert_eq!(vec[0usize], 10);
        assert_eq!(vec[1usize], 20);

        vec[0usize] = 15;
        assert_eq!(vec[0usize], 15);

        Ok(())
    }

    #[test]
    #[should_panic(expected = "assertion failed")]
    fn test_index_panic() {
        let vec: ValVec32<i32> = ValVec32::new();
        let _ = vec[2usize]; // Should panic
    }

    #[test]
    fn test_pop() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();

        assert_eq!(vec.pop(), None);

        vec.push(42)?;
        vec.push(84)?;

        assert_eq!(vec.pop(), Some(84));
        assert_eq!(vec.pop(), Some(42));
        assert_eq!(vec.pop(), None);
        assert!(vec.is_empty());

        Ok(())
    }

    #[test]
    fn test_set() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.push(42)?;

        vec.set(0, 84)?;
        assert_eq!(vec[0usize], 84);

        let result = vec.set(1, 126);
        assert!(result.is_err());

        Ok(())
    }

    #[test]
    fn test_clear() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.push(1)?;
        vec.push(2)?;
        vec.push(3)?;

        assert_eq!(vec.len(), 3);
        vec.clear();
        assert_eq!(vec.len(), 0);
        assert!(vec.is_empty());

        Ok(())
    }

    #[test]
    fn test_as_slice() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.push(1)?;
        vec.push(2)?;
        vec.push(3)?;

        let slice = vec.as_slice();
        assert_eq!(slice, &[1, 2, 3]);

        Ok(())
    }

    #[test]
    fn test_clone() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.push(1)?;
        vec.push(2)?;
        vec.push(3)?;

        let cloned = vec.clone();
        assert_eq!(vec, cloned);
        assert_eq!(vec.as_slice(), cloned.as_slice());

        Ok(())
    }

    #[test]
    fn test_equality() -> Result<()> {
        let mut vec1 = ValVec32::new();
        let mut vec2 = ValVec32::new();

        assert_eq!(vec1, vec2);

        vec1.push(42)?;
        assert_ne!(vec1, vec2);

        vec2.push(42)?;
        assert_eq!(vec1, vec2);

        Ok(())
    }

    #[test]
    fn test_growth() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        let initial_capacity = vec.capacity();

        // Push enough elements to trigger growth
        for i in 0..10 {
            vec.push(i)?;
        }

        assert!(vec.capacity() > initial_capacity);
        assert_eq!(vec.len(), 10);

        for i in 0usize..10 {
            assert_eq!(vec[i], i as i32);
        }

        Ok(())
    }

    #[test]
    fn test_reserve() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();
        vec.reserve(100)?;

        assert!(vec.capacity() >= 100);
        assert_eq!(vec.len(), 0);

        Ok(())
    }

    #[test]
    fn test_memory_efficiency() -> Result<()> {
        // Test that ValVec32 uses less memory than equivalent std::Vec
        // This is primarily a compile-time verification

        let _vec32 = ValVec32::<u64>::new();
        let _std_vec = Vec::<u64>::new();

        // ValVec32 core data should be more memory efficient
        // Note: Due to Option<SecureMemoryPool> the struct is larger, but the core indices are smaller

        // Verify the struct size - ValVec32 uses u32 for len/capacity vs usize for Vec
        let vec32_size = std::mem::size_of::<ValVec32<u64>>();
        let std_vec_size = std::mem::size_of::<Vec<u64>>();

        // The benefit is in the smaller indices (u32 vs usize), not necessarily the full struct
        println!("ValVec32 size: {}, Vec size: {}", vec32_size, std_vec_size);

        // The memory efficiency comes from the 32-bit indices, not the total struct size
        assert!(vec32_size > 0);
        assert!(std_vec_size > 0);

        Ok(())
    }




    #[test]
    fn test_branch_prediction_hints() {
        // Test that likely macro works correctly (just passes through on stable)
        assert!(likely!(true));
        assert!(!likely!(false));
    }

    #[test]
    fn test_small_size_growth() -> Result<()> {
        let mut vec = ValVec32::<i32>::new();

        // First push should trigger initial allocation 
        vec.push(1)?;
        let initial_capacity = vec.capacity();

        // Should be at least 4 elements for cache efficiency
        assert!(initial_capacity >= 4);

        // The initial capacity should be reasonable for small vectors
        // With malloc_usable_size bonus, this could be slightly larger than expected
        let cache_line_elements = 64 / std::mem::size_of::<i32>();
        let max_reasonable = (cache_line_elements * 2).max(32) as u32; // Allow for malloc bonus
        assert!(initial_capacity <= max_reasonable, 
                "initial_capacity {} > max_reasonable {}", initial_capacity, max_reasonable);

        // Test that growth works properly
        let mut count = 1;
        let first_capacity = initial_capacity;
        
        // Fill to capacity
        while count < first_capacity {
            vec.push(count as i32)?;
            count += 1;
        }
        
        // Next push should trigger growth
        vec.push(count as i32)?;
        assert!(vec.capacity() > first_capacity);

        Ok(())
    }


    #[test]
    fn test_zero_sized_types() -> Result<()> {
        // Test basic ZST support
        let mut vec = ValVec32::<()>::new();
        
        assert_eq!(vec.len(), 0);
        assert_eq!(vec.capacity(), 0);
        assert!(vec.is_empty());

        // Test basic push operations
        for _ in 0..10 {
            vec.push(())?;
        }
        assert_eq!(vec.len(), 10);
        
        // Test indexing
        assert_eq!(vec.get(0), Some(&()));
        assert_eq!(vec.get(9), Some(&()));
        assert_eq!(vec.get(10), None);

        // Test pop operations
        assert_eq!(vec.pop(), Some(()));
        assert_eq!(vec.len(), 9);

        Ok(())
    }


}