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
pub use ;
pub use SmallVec;
use Pipe;
use crateMiniStr;
/// Compact string list optimized for small datasets
///
/// Implements stack-allocated storage using `SmallVec`, avoiding heap
/// allocation when containing up to `N` elements. Ideal for small string
/// collections created and destroyed frequently.
///
/// # Generic Parameter
///
/// - `N`: Inline storage capacity determining maximum elements stored on stack
///
/// # Example
///
/// ```
/// use glossa_shared::{MiniStr, small_list::SmallList};
///
/// // Create from string literals (stack-allocated)
/// let list: SmallList<4> = ["a", "b", "c"].into_iter().collect();
/// assert_eq!(list.len(), 3);
///
/// // Create from dynamic strings (auto heap allocation when exceeding N)
/// let strings = vec!["hello".to_string(); 5];
/// let list: SmallList<3> = strings.into_iter().collect();
/// assert_eq!(list.len(), 5);
/// ```
;