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
//! Efficient prefix-based navigation and iteration for dictionary zippers.
//!
//! This module provides extension traits for dictionary zippers that enable
//! O(k) navigation to a prefix followed by O(m) iteration over matching terms,
//! where k = prefix length and m = number of matching terms.
//!
//! This is significantly faster than O(n) full dictionary iteration with
//! `.starts_with()` filtering when m << n (selective prefixes).
//!
//! # Examples
//!
//! ## Basic Prefix Matching
//!
//! ```rust
//! use libdictenstein::prelude::*;
//! use libdictenstein::prefix_zipper::PrefixZipper;
//! use libdictenstein::double_array_trie_zipper::DoubleArrayTrieZipper;
//!
//! let terms = vec!["process", "processUser", "produce", "product"];
//! let dict = DoubleArrayTrie::from_terms(terms.iter());
//!
//! // Create a zipper from the dictionary
//! let zipper = DoubleArrayTrieZipper::new_from_dict(&dict);
//!
//! // Navigate to prefix and iterate matching terms
//! if let Some(iter) = zipper.with_prefix(b"proc") {
//! for (path, _zipper) in iter {
//! let term = String::from_utf8(path).unwrap();
//! println!("Found: {}", term);
//! // Prints: "process" and "processUser"
//! }
//! }
//! ```
//!
//! ## Unicode Support (Character-level)
//!
//! ```rust
//! use libdictenstein::double_array_trie_char::DoubleArrayTrieChar;
//! use libdictenstein::double_array_trie_char_zipper::DoubleArrayTrieCharZipper;
//! use libdictenstein::prefix_zipper::PrefixZipper;
//!
//! let terms = vec!["café", "cafétéria", "naïve"];
//! let dict = DoubleArrayTrieChar::from_terms(terms.iter());
//!
//! let zipper = DoubleArrayTrieCharZipper::new_from_dict(&dict);
//! let prefix: Vec<char> = "caf".chars().collect();
//!
//! if let Some(iter) = zipper.with_prefix(&prefix) {
//! for (path, _) in iter {
//! let term: String = path.iter().collect();
//! println!("Found: {}", term);
//! // Prints: "café" and "cafétéria"
//! }
//! }
//! ```
//!
//! ## Valued Dictionaries
//!
//! ```rust
//! use libdictenstein::prelude::*;
//! use libdictenstein::prefix_zipper::ValuedPrefixZipper;
//! use libdictenstein::double_array_trie_zipper::DoubleArrayTrieZipper;
//!
//! let terms_with_values = vec![("cat", 1), ("cats", 2), ("dog", 3)];
//! let dict = DoubleArrayTrie::from_terms_with_values(
//! terms_with_values.into_iter()
//! );
//!
//! let zipper = DoubleArrayTrieZipper::new_from_dict(&dict);
//!
//! // Iterate with values
//! if let Some(iter) = zipper.with_prefix_values(b"cat") {
//! for (path, value) in iter {
//! let term = String::from_utf8(path).unwrap();
//! println!("Found: {} -> {}", term, value);
//! // Prints:
//! // "cat -> 1"
//! // "cats -> 2"
//! }
//! }
//! ```
//!
//! # Performance
//!
//! - **Navigation**: O(k) where k = prefix length (typically 2-5 characters)
//! - **Iteration**: O(m) where m = number of terms matching prefix
//! - **Total**: O(k + m) vs O(n) for full iteration + filtering
//!
//! For selective prefixes where m << n, this provides 5-10x speedup.
//!
//! # Use Cases
//!
//! - Code completion / autocomplete
//! - Prefix search in large dictionaries
//! - Pattern-aware completion (Rholang LSP)
//! - Any scenario requiring "terms starting with X"
//!
//! # Backend Compatibility
//!
//! Works uniformly across all dictionary backends:
//! - `DoubleArrayTrie` (byte and char variants)
//! - `DynamicDawg` (byte and char variants)
//! - `PathMapDictionary` (byte variant)
//! - `SuffixAutomaton` (byte and char variants)
//!
//! No backend-specific code required - uses generic `DictZipper` API.
use ;
/// Extension trait for efficient prefix-based navigation in dictionaries.
///
/// This trait enables O(k) navigation to a prefix in a trie-based dictionary,
/// followed by O(m) iteration over matching terms.
///
/// # Type Parameters
///
/// - `Self: DictZipper` - Any dictionary zipper type
/// - `Self::Unit` - Character unit type (u8 for byte-level, char for character-level)
///
/// # Performance
///
/// - **Prefix validation**: O(k) where k = prefix length
/// - **Iterator creation**: O(1) (just navigation, no collection)
/// - **Per-result iteration**: O(1) amortized (DFS traversal)
///
/// # Thread Safety
///
/// The returned iterator is Send/Sync if the underlying zipper is Send/Sync.
/// This is automatically satisfied for all standard backends.
/// Blanket implementation: all DictZippers automatically get PrefixZipper support.
/// Iterator over all terms matching a given prefix.
///
/// This iterator performs depth-first traversal from the prefix position,
/// yielding complete terms (nodes where `is_final()` returns true).
///
/// # Type Parameters
///
/// - `Z: DictZipper` - The underlying zipper type
///
/// # Iterator Item
///
/// Returns `(Vec<Z::Unit>, Z)`:
/// - `Vec<Z::Unit>` - Complete path (term) as sequence of units
/// - `Z` - Zipper positioned at the final node (useful for further queries)
///
/// # Performance
///
/// - **Amortized per-result**: O(1) - DFS with stack-based traversal
/// - **Total**: O(m) where m = number of matching terms
/// - **Memory**: O(d) where d = maximum depth of matching terms
///
/// # Examples
///
/// ```text
/// use libdictenstein::prelude::*;
/// use libdictenstein::prefix_zipper::PrefixZipper;
///
/// let dict = DoubleArrayTrie::from_terms(vec!["cat", "cats", "dog"].iter().map(|s| s.as_bytes()));
/// let zipper = dict.zipper();
///
/// let results: Vec<String> = zipper
/// .with_prefix(b"cat")
/// .unwrap()
/// .map(|(path, _)| String::from_utf8(path).unwrap())
/// .collect();
///
/// assert_eq!(results, vec!["cat", "cats"]);
/// ```
/// Extension of PrefixZipper for dictionaries with associated values.
///
/// This trait enables prefix iteration that also yields the values
/// associated with matching terms.
///
/// # Type Parameters
///
/// - `Self: ValuedDictZipper` - Any valued dictionary zipper type
/// - `Self::Value` - The value type associated with terms
///
/// # Examples
///
/// ```rust
/// use libdictenstein::prelude::*;
/// use libdictenstein::prefix_zipper::ValuedPrefixZipper;
/// use libdictenstein::double_array_trie_zipper::DoubleArrayTrieZipper;
///
/// let dict = DoubleArrayTrie::from_terms_with_values(
/// vec![("cat", 1), ("cats", 2), ("dog", 3)].into_iter()
/// );
/// let zipper = DoubleArrayTrieZipper::new_from_dict(&dict);
///
/// let mut results: Vec<(String, usize)> = zipper
/// .with_prefix_values(b"cat")
/// .unwrap()
/// .map(|(path, val)| (String::from_utf8(path).unwrap(), val))
/// .collect();
///
/// results.sort();
/// assert_eq!(results, vec![("cat".to_string(), 1), ("cats".to_string(), 2)]);
/// ```
/// Blanket implementation: all ValuedDictZippers automatically get ValuedPrefixZipper support.
/// Iterator over (term, value) pairs matching a given prefix.
///
/// This iterator wraps `PrefixIterator` and extracts values from final
/// nodes, yielding `(path, value)` tuples.
///
/// # Type Parameters
///
/// - `Z: ValuedDictZipper` - The underlying valued zipper type
///
/// # Iterator Item
///
/// Returns `(Vec<Z::Unit>, Z::Value)`:
/// - `Vec<Z::Unit>` - Complete path (term) as sequence of units
/// - `Z::Value` - Associated value for this term
///
/// # Examples
///
/// See `ValuedPrefixZipper` trait documentation for usage example.