HashMap in scratch > What is this? A simple implementation of a hashmap, that allows you to store values in a key-value schema. > What do the benchmark results mean effictively nothing, as scratch lists arent built as hashmaps and therefore a normal speed comparison is not meaningfull. the only way to implement an actual hashmap using lists that would represant that would be by saving key and value in the same element, which would defeat the speed effect entirely (you could still use 2 lists, where list a contains the keys and list b the values, this is probaply even faster than my implementation)