1
0
mirror of https://github.com/JustinSDK/dotSCAD.git synced 2025-09-01 18:54:39 +02:00

change dir

This commit is contained in:
Justin Lin
2021-03-06 15:58:56 +08:00
parent 5c4c0b1e08
commit 2b2beb873e
20 changed files with 41 additions and 40 deletions

View File

@@ -0,0 +1,36 @@
use <util/map/hashmap.scad>;
use <util/map/hashmap_list.scad>;
use <util/map/hashmap_put.scad>;
use <util/map/hashmap_len.scad>;
use <util/map/hashmap_del.scad>;
use <util/map/hashmap_get.scad>;
module test_hashmap() {
echo("==== test_hashmap ====");
s = hashmap([
["k1234", 1],
["k5678", 2],
["k9876", 3],
["k4444", 3],
]);
assert(hashmap_len(s) == 4);
assert(hashmap_list(s) == [["k9876", 3], ["k4444", 3], ["k1234", 1], ["k5678", 2]]);
s2 = hashmap_put(s, "k1357", 100);
assert(hashmap_list(s2) == [["k9876", 3], ["k4444", 3], ["k1234", 1], ["k5678", 2], ["k1357", 100]]);
s3 = hashmap_put(s2, "k5678", 200);
assert(hashmap_list(s3) == [["k9876", 3], ["k4444", 3], ["k1234", 1], ["k5678", 200], ["k1357", 100]]);
s4 = hashmap_del(s3, "k4444");
assert(hashmap_list(s4) == [["k9876", 3], ["k1234", 1], ["k5678", 200], ["k1357", 100]]);
assert(hashmap_list(hashmap_del(s4, "k4444")) == [["k9876", 3], ["k1234", 1], ["k5678", 200], ["k1357", 100]]);
assert(hashmap_get(s4, "k1234") == 1);
assert(hashmap_get(s4, "k0000") == undef);
}
test_hashmap();