@@ -137,6 +137,7 @@ impl<T> Map<uint, T> for TrieMap<T> {
137
137
}
138
138
139
139
impl < T > TrieMap < T > {
140
+ /// Create an empty TrieMap
140
141
#[ inline( always) ]
141
142
static pure fn new( ) -> TrieMap <T > {
142
143
TrieMap { root: TrieNode :: new( ) , length: 0 }
@@ -191,6 +192,12 @@ impl Mutable for TrieSet {
191
192
}
192
193
193
194
impl TrieSet {
195
+ /// Create an empty TrieSet
196
+ #[ inline( always) ]
197
+ static pure fn new( ) -> TrieSet {
198
+ TrieSet { map: TrieMap :: new ( ) }
199
+ }
200
+
194
201
/// Return true if the set contains a value
195
202
#[ inline( always) ]
196
203
pure fn contains ( & self , value : & uint ) -> bool {
@@ -265,8 +272,8 @@ impl<T> TrieNode<T> {
265
272
// if this was done via a trait, the key could be generic
266
273
#[ inline( always) ]
267
274
pure fn chunk ( n : uint , idx : uint ) -> uint {
268
- let real_idx = uint:: bytes - 1 - idx;
269
- ( n >> ( SHIFT * real_idx ) ) & MASK
275
+ let sh = uint:: bits - ( SHIFT * ( idx + 1 ) ) ;
276
+ ( n >> sh ) & MASK
270
277
}
271
278
272
279
fn insert < T > ( count : & mut uint , child : & mut Child < T > , key : uint , value : T ,
@@ -462,4 +469,26 @@ mod tests {
462
469
n -= 1 ;
463
470
}
464
471
}
472
+
473
+ #[ test]
474
+ fn test_sane_chunk ( ) {
475
+ let x = 1 ;
476
+ let y = 1 << ( uint:: bits - 1 ) ;
477
+
478
+ let mut trie = TrieSet :: new ( ) ;
479
+
480
+ fail_unless ! ( trie. insert( x) ) ;
481
+ fail_unless ! ( trie. insert( y) ) ;
482
+
483
+ fail_unless ! ( trie. len( ) == 2 ) ;
484
+
485
+ let expected = [ x, y] ;
486
+
487
+ let mut i = 0 ;
488
+
489
+ for trie. each |x| {
490
+ fail_unless ! ( expected[ i] == * x) ;
491
+ i += 1 ;
492
+ }
493
+ }
465
494
}
0 commit comments