File tree Expand file tree Collapse file tree 2 files changed +4
-1
lines changed
branches/auto/src/libcore Expand file tree Collapse file tree 2 files changed +4
-1
lines changed Original file line number Diff line number Diff line change @@ -14,5 +14,5 @@ refs/heads/try3: 9387340aab40a73e8424c48fd42f0c521a4875c0
14
14
refs/tags/release-0.3.1: 495bae036dfe5ec6ceafd3312b4dca48741e845b
15
15
refs/tags/release-0.4: e828ea2080499553b97dfe33b3f4d472b4562ad7
16
16
refs/tags/release-0.5: 7e3bcfbf21278251ee936ad53e92e9b719702d73
17
- refs/heads/auto: 04e367b353002e247a0b4ebcf2aba59ce01fad73
17
+ refs/heads/auto: 55fbb9518b31e47e796110a1d214a2ef5c11fab5
18
18
refs/heads/servo: af82457af293e2a842ba6b7759b70288da276167
Original file line number Diff line number Diff line change @@ -161,12 +161,15 @@ pub struct TrieSet {
161
161
162
162
impl BaseIter < uint > for TrieSet {
163
163
/// Visit all values in order
164
+ #[ inline( always) ]
164
165
fn each ( & self , f : & fn ( & uint ) -> bool ) { self . map . each_key ( f) }
166
+ #[ inline( always) ]
165
167
fn size_hint ( & self ) -> Option < uint > { Some ( self . len ( ) ) }
166
168
}
167
169
168
170
impl ReverseIter < uint > for TrieSet {
169
171
/// Visit all values in reverse order
172
+ #[ inline( always) ]
170
173
fn each_reverse ( & self , f : & fn ( & uint ) -> bool ) {
171
174
self . map . each_key_reverse ( f)
172
175
}
You can’t perform that action at this time.
0 commit comments