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 4e515c1 commit 914b6feCopy full SHA for 914b6fe
src/test/bench/std-smallintmap.rs
@@ -2,16 +2,16 @@
2
3
use std;
4
import std::smallintmap;
5
-import std::smallintmap::smallintmap;
+import std::smallintmap::SmallIntMap;
6
import io::WriterUtil;
7
8
-fn append_sequential(min: uint, max: uint, map: smallintmap<uint>) {
+fn append_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
9
for uint::range(min, max) |i| {
10
map.insert(i, i + 22u);
11
}
12
13
14
-fn check_sequential(min: uint, max: uint, map: smallintmap<uint>) {
+fn check_sequential(min: uint, max: uint, map: SmallIntMap<uint>) {
15
16
assert map.get(i) == i + 22u;
17
0 commit comments