We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 9814d0d commit 5d40630Copy full SHA for 5d40630
src/libcore/trie.rs
@@ -136,15 +136,13 @@ impl<T> Map<uint, T> for TrieMap<T> {
136
}
137
138
139
-impl<T> TrieMap<T> {
+pub impl<T> TrieMap<T> {
140
/// Create an empty TrieMap
141
#[inline(always)]
142
static pure fn new() -> TrieMap<T> {
143
TrieMap{root: TrieNode::new(), length: 0}
144
145
-}
146
147
148
/// Visit all keys in reverse order
149
150
pure fn each_key_reverse(&self, f: &fn(&uint) -> bool) {
0 commit comments